Installation - ReconoSERID/SDK-ReconoSERID-Android GitHub Wiki

ReconoSerSdk ## Installation

Installation

token.jpg

En build.gradle Project debes agregar

gradle1.jpg

#!java

jcenter()
        maven {
            url 'https://jitpack.io'
            credentials { username authToken }
        }

and to add the sdk just add it inside the build.gradle Module in the dependencies:

Current version 1.5.8

previous version 1.5.5

1.5.5

For this new version the SDK integration way was changed, the following implementation must be done:

```` implementation("org.bitbucket.reconoser_id.sdk_android:reconosersdk:1.5.5:staging@aar") { transitive = true }`````

For test environment place staging for production production.

Example implementation("org.bitbucket.reconoser_id.sdk_android:reconosersdk:1.5.5:environment@aar") { transitive = true }

Additional in the build.gradle Module add inside android:

gradle3.jpg

Update 1.5.8

#!java

 compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

back