- What is the BlackBerry Dynamics SDK?
- Requirements and support for platform-specific features
- Steps to get started with the BlackBerry Dynamics SDK
- Integrating optional features
- Creating wearable apps for Wear OS devices
- Implementing SafetyNet attestation for BlackBerry Dynamics apps
- Sample apps
- Testing and troubleshooting
- Implementing automated testing for BlackBerry Dynamics apps
- Automated testing with the BlackBerry Dynamics sample apps
- Preparing for automated testing
- Components of a sample automated testing configuration
- Execute all tests from the command line with Gradle
- Execute specific tests from the command line with Gradle
- Execute tests from the Android Studio IDE
- Add automated testing to your BlackBerry Dynamics Android app
- Disable compliance settings so you can debug your app
- Emulators and the rooted OS compliance setting
- Using enterprise simulation mode
- Troubleshooting common issues
- Logging and diagnostics
- Implementing automated testing for BlackBerry Dynamics apps
- Deploying your BlackBerry Dynamics app
- Deploying certificates to BlackBerry Dynamics apps
- BlackBerry Docs
- BlackBerry Dynamics SDK for Android 6.0
- BlackBerry Dynamics SDK for Android Development Guide
- Integrating optional features
- Enable Samsung Pass for user authentication
Enable Samsung Pass for user authentication
Samsung Pass
for user authenticationComplete the following steps to add support for
Samsung Pass
to your BlackBerry
Dynamics
app.Visit http://developer.samsung.com/ to download the
Samsung Pass SDK
. Extract the SDK files.- Add the libraries from theSamsung Pass SDKto a local lib folder.
- Use one of the methods described in Integrating the BlackBerry Dynamics SDK in .aar format to add theBlackBerry Dynamicslibrary forSamsung Pass(android_handheld_samsung_pass_support) to your project.
When you use an obfuscation tool in your build and release process (it is a best practice to use
ProGuard
), all the names of the classes in the support library and Samsung Pass SDK
must be retained to ensure their functionality. You can use the following example to add the required lines to your ProGuard
configuration files:
-keep public class com.good.gd.support.samsungpass.** { *; } -dontwarn com.good.gd.support.samsungpass.** -keep class com.samsung.android.** { *; } -dontwarn com.samsung.android.**