diff --git a/README.html b/README.html index 3f00ad6..99cd223 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.0 of the TruValidate Device Risk SDK for Android supports Android 5.0 or higher.
+Version 5.2.1 of the TruValidate Device Risk SDK for Android supports Android 5.0 or higher.
Download iovation-android-sdk-5.2.0.zip from here: iovation Mobile SDK for Android.
+Download iovation-android-sdk-5.2.1.zip from here: iovation Mobile SDK for Android.
Unzip iovation-android-sdk-5.2.0.zip.
+Unzip iovation-android-sdk-5.2.1.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.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.2.0.aar file accessible to Gradle.
If you are using Gradle, add the fraudforce-lib-release-5.2.1.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.1.aar file accessible to Gradle.
buildscript {
repositories {
flatDir {
@@ -95,15 +95,15 @@ Installing the Device Risk S
dirs 'libs'
}
}
-
Also in the application module's build.gradle
file, make sure that fraudforce-lib-release-5.2.0 is included as a dependency:
Also in the application module's build.gradle
file, make sure that fraudforce-lib-release-5.2.1 is included as a dependency:
dependencies {
...
- implementation(name:'fraudforce-lib-release-5.2.0', ext:'aar')
+ implementation(name:'fraudforce-lib-release-5.2.1', 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.0.aar')
+ implementation files('libs/fraudforce-lib-release-5.2.1.aar')
}
Save the build.gradle
file.
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.0.zip or cloned the repo, open the android-studio-sample-app directory.
+From the directory where you unzipped fraudforce-lib-release-5.2.1.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
.