Including ZenKey SDK for Android
Visit ZenKey's GITHUB repository Android section at https://github.com/MyZenKey/sp-sdk-android.
ZenKey provides the SDK as a Gradle, Maven, and Ivy reference. To use Gradle for integration, add the JCenter repository to your top-level build.gradle
file if you do not already have it.
allprojects {
repositories {
jcenter()
}
}
Next, add the ZenKey SDK as a dependency in your application module build.gradle
file.
dependencies {
implementation 'com.xci.android:zenkey-sdk:0.x.y'
}
Replace the x and y above with the latest version numbers found here.
Add Internet Permission
Add internet permission to your Android manifest.
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET" />
<application>
[...]
</application>
</manifest>
Updated about 1 year ago
Did this page help you?