diff --git a/README.html b/README.html index bb733ce..232921d 100644 --- a/README.html +++ b/README.html @@ -24,11 +24,11 @@
NOTE If the permissions listed are not required by the application, the values collected using those permissions will be ignored. The permissions are not required to obtain a usable blackbox, but they do help obtain some unique device information.
NOTE Android 10 introduced the ACCESS_BACKGROUND_LOCATION permission, protected at the dangerous level as is the case for ACCESS_FINE_LOCATION. Refer to the official Android documentation for when to incorporate this permission.
-Version 5.2.2 of the TruValidate Device Risk SDK for Android supports Android 5.0 or higher.
+Version 5.3.0 of the TruValidate Device Risk SDK for Android supports Android 5.0 or higher.
Download iovation-android-sdk-5.2.2.zip from here: iovation Mobile SDK for Android.
+Download iovation-android-sdk-5.3.0.zip from here: iovation Mobile SDK for Android.
Unzip iovation-android-sdk-5.2.2.zip.
+Unzip iovation-android-sdk-5.3.0.zip.
Depending on your IDE, do one of the following:
In Maven, deploy the AAR file to your local Maven repository, using maven-deploy. For more information, see Guide to installing 3rd party JARs.
If you are using Gradle, add the fraudforce-lib-release-5.2.2.aar file to your application module's libs directory. Then, edit the build.gradle file in order to add the libs directory as a flat-file repository to the buildscript and repository sections. This makes the fraudforce-lib-release-5.2.2.aar file accessible to Gradle.
If you are using Gradle, add the fraudforce-lib-release-5.3.0.aar file to your application module's libs directory. Then, edit the build.gradle file in order to add the libs directory as a flat-file repository to the buildscript and repository sections. This makes the fraudforce-lib-release-5.3.0.aar file accessible to Gradle.
buildscript {
repositories {
flatDir {
@@ -95,25 +95,25 @@ Installing the Device Risk S
dirs 'libs'
}
}
-
Also in the application module's build.gradle file, make sure that fraudforce-lib-release-5.2.2 is included as a dependency:
Also in the application module's build.gradle file, make sure that fraudforce-lib-release-5.3.0 is included as a dependency:
dependencies {
...
- implementation(name:'fraudforce-lib-release-5.2.2', ext:'aar')
+ implementation(name:'fraudforce-lib-release-5.3.0', ext:'aar')
}
Alternatively, you can include the dependency without exposing your libs folder as a repository by declaring it in the module's build.gradle file as follows:
dependencies {
...
- implementation files('libs/fraudforce-lib-release-5.2.2.aar')
+ implementation files('libs/fraudforce-lib-release-5.3.0.aar')
}
Save the build.gradle file.
If you are not already using Java 8 in your project, please include the following code into your application's 'build.gradle' file.
+If you are not already using Java 11 in your project, please include the following code into your application's 'build.gradle' file.
android {
compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
+ sourceCompatibility JavaVersion.VERSION_11
+ targetCompatibility JavaVersion.VERSION_11
}
}
1 In Android Studio, select File | Open or click Open Existing Android Studio Project from the quick-start screen.
From the directory where you unzipped fraudforce-lib-release-5.2.2.zip or cloned the repo, open the android-studio-sample-app directory.
+From the directory where you unzipped fraudforce-lib-release-5.3.0.zip or cloned the repo, open the android-studio-sample-app directory.
In the project navigation view, open app/src/main/java/com/iovation/mobile/android/sample/MainActivity.java to run the Java sample app. To run the Kotlin sample app, open kotlinApp/src/main/java/com/iovation/mobile/android/sample/MainActivity.kt.