Installation and Setup
Add the following repositories in your project-level repositories configuration:
repositories {
mavenCentral()
maven { url "https://repo.qoreid.com/repository/maven-releases/" }
maven { url 'https://jitpack.io' }
}
Add the QoreID SDK dependency in your app module's build.gradle
file:
dependencies {
implementation 'com.qoreid:qoreid-sdk:1.1.40'
}
Add Java 8 support:
android {
// ...
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
// For kotlin codebases, include
kotlinOptions {
jvmTarget = "1.8"
}
}
Proguard
Add this to your proguard rules file
-keep class com.qoreid.sdk.** { *; }
You have successfully installed the QoreId SDK! π
Updated about 1 year ago
Whatβs Next