Info:
Add
Samsung Pass to your BlackBerry
Dynamics
app
BlackBerry
Dynamics
appComplete the following steps to support Samsung Pass in your app.
For background information, see Support for fingerprint authentication.
- Copy the following .jar files to the directory:blackberry_dynamics_sdk_installation_directory/libs/handheld/gd_samsungpass_support/libs
- samsung_pass_unzipped_directory/Libs/pass-version.jar
- samsung_pass_unzipped_directory/Libs/sdk-version.jar
- In yourBlackBerry Dynamics SDKproject, add the following example lines tosettings.gradle. Be sure to check the relative path to the libraries:include 'GDLibrary_SamsungPassSupport' project(':GDLibrary_SamsungPassSupport').projectDir = \ new File('../../libs/handheld/gd_samsungpass_support')
- Add the following dependency tobuild.gradle:dependencies { compile project(':GDLibrary_SamsungPassSupport') }
You can now build your app.
ProGuard
configuration:
All the names of the classes in the
Support Library and
Samsung Pass SDK
must be
retained to ensure their functionality. Add the following 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.**