diff --git a/README.md b/README.md index 98b335a..f13a69c 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,11 @@ This document details the integration steps required to integrate the Device Risk Android SDK into your application or library. -## What's new in version 4.2.2 +## What's new in version 4.3.0 -- Bug Fixes and Improvements. +- Improved the stability and reliability of the SDK. +- Added support for capturing Additional network data. +- Fixed `InitializeSDK()` callbacks when called multiple times. ## Minimum requirements @@ -35,7 +37,7 @@ allprojects { 2. Add the SDK dependency to the app's gradle file, make sure to set the version number to the latest one: ``` -implementation 'com.socure.devicerisk.sdk:socure-devicerisk:4.2.2' +implementation 'com.socure.devicerisk.sdk:socure-devicerisk:4.3.0' ``` 4. Specify `android:allowBackup="true"` in your app's `AndroidManifest.xml` application attributes. This will improve persistence of your `sessionToken` when your app gets reinstalled for clients who have enabled backup in their device settings. diff --git a/sample-app/app/build.gradle b/sample-app/app/build.gradle index 24a0831..9b733fc 100644 --- a/sample-app/app/build.gradle +++ b/sample-app/app/build.gradle @@ -40,7 +40,7 @@ android { } dependencies { - implementation 'com.socure.devicerisk.sdk:socure-devicerisk:4.2.2' + implementation 'com.socure.devicerisk.sdk:socure-devicerisk:4.3.0' implementation "androidx.constraintlayout:constraintlayout:2.1.4" implementation 'com.karumi:dexter:6.2.1' diff --git a/sample-app/build.gradle b/sample-app/build.gradle index f10b8cb..a2ab894 100644 --- a/sample-app/build.gradle +++ b/sample-app/build.gradle @@ -8,7 +8,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:7.4.2' + classpath 'com.android.tools.build:gradle:8.1.4' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong diff --git a/sample-app/gradle/wrapper/gradle-wrapper.properties b/sample-app/gradle/wrapper/gradle-wrapper.properties index 633c206..ee91a49 100644 --- a/sample-app/gradle/wrapper/gradle-wrapper.properties +++ b/sample-app/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Fri Mar 01 13:33:44 EST 2024 +#Thu Aug 08 12:55:38 EDT 2024 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists