Skip Navigation

Info: Add Samsung Pass to your
BlackBerry Dynamics
app

Complete the following steps to support Samsung Pass in your app. For background information, see Support for fingerprint authentication.
  1. Download and unzip the
    Samsung Pass SDK
    v1.2.1 at .
  2. 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
  3. In your
    BlackBerry Dynamics SDK
    project, add the following example lines to
    settings.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')
  4. Add the following dependency to
    build.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.**