Installation

Dependencies

  1. Wultra Device Fingerprint for Android (closed source)
  2. PowerAuth SDK for Mobile Apps (optional)
  3. PowerAuth Networking for Android (optional)

To understand why is PowerAuth optional and if you need it, follow the “Do I Need PowerAuth” section of this documentation.

Supported operating systems

The library is supported by the following operating systems:

  • Android 4.4+
  • Harmony OS

Gradle Integration

  1. Adding Maven Repository

    Add new Maven repositories pointing to Wultra Artifactory.

     repositories {
         maven {
             url 'https://wultra.jfrog.io/artifactory/activation-spawn-android/'
             credentials {
                 username = wultraArtifactoryUsername
                 password = wultraArtifactoryPass
             }
         }
         maven {
             url 'https://wultra.jfrog.io/artifactory/device-fingerprint-android/'
             credentials {
                 username = wultraArtifactoryUsername
                 password = wultraArtifactoryPass
             }
         }
     }
    
  2. Adding Project Dependency

    Once you add the Maven repository, you can add activation spawn dependency to your Android project.

     android {
         dependencies {
             // Activation Spawn With PowerAuth
             implementation "com.wultra.android.activationspawn:activation-spawn:${ACTIVATION_SPAWN_VERSION}"
             // Activation Spawn Without PowerAuth
             // implementation "com.wultra.android.activationspawn:activation-spawn-basic:${ACTIVATION_SPAWN_VERSION}"
         }
     }
    
Last updated on Jun 06, 2024 (09:34) Edit on Github Send Feedback
Search

3.1.x

Activation Spawn SDK for Android