You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<td> Android SDK 4.1 or higher (SDK level 16) </td>
51
+
<td> Android SDK 5.0 or higher (SDK level 21) </td>
52
52
</tr>
53
53
<tr>
54
54
<td><strong>Library Dependencies</strong></td>
@@ -70,22 +70,23 @@ <h2 id="androidintegrationfilesandrequirements">Android Integration Files and Re
70
70
</table>
71
71
72
72
<blockquote>
73
+
<p><strong>NOTE</strong> Regarding Android 11 background location changes: The FraudForce SDK neither requires nor requests location when the application is in a background state.</p>
73
74
<p><strong>NOTE</strong> 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.</p>
74
75
<p><strong>NOTE</strong> 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 and how to incorporate this permission.</p>
75
76
</blockquote>
76
77
77
-
<p>Version 4.2.0 of the iovation FraudForce SDK for Android supports Android 4.1 or higher.</p>
78
+
<p>Version 4.3.0 of the iovation FraudForce SDK for Android supports Android 5.0 or higher.</p>
78
79
79
80
<h2id="installingthefraudforcesdkforandroid">Installing the FraudForce SDK for Android</h2>
80
81
81
82
<ol>
82
-
<li><p>Download iovation-android-sdk-4.2.0.zip from here: <ahref="https://github.com/iovation/deviceprint-SDK-Android">iovation Mobile SDK for Android</a>. </p></li>
<li><p>Download iovation-android-sdk-4.3.0.zip from here: <ahref="https://github.com/iovation/deviceprint-SDK-Android">iovation Mobile SDK for Android</a>. </p></li>
<li><p>Depending on your IDE, do one of the following:</p>
85
86
86
87
<ul>
87
88
<li><p>In <strong>Eclipse and Maven</strong>, deploy the AAR file to your local Maven repository, using maven-deploy. For more information, see <ahref="http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html">Guide to installing 3rd party JARs</a>.</p></li>
88
-
<li><p>If you are using <strong>Android Studio with Gradle</strong>, add the <em>fraudforce-lib-release-4.2.0.aar</em> file to your application module’s libs directory. Then, edit the <em>build.gradle</em> file in order to add the libs directory as a flat-file repository to the <code>buildscript</code> and <code>repository</code> sections. This makes the fraudforce-lib-release-4.2.0.aar file accessible to Gradle.</p>
89
+
<li><p>If you are using <strong>Android Studio with Gradle</strong>, add the <em>fraudforce-lib-release-4.3.0.aar</em> file to your application module’s libs directory. Then, edit the <em>build.gradle</em> file in order to add the libs directory as a flat-file repository to the <code>buildscript</code> and <code>repository</code> sections. This makes the fraudforce-lib-release-4.3.0.aar file accessible to Gradle.</p>
89
90
90
91
<pre><code>buildscript {
91
92
repositories {
@@ -102,11 +103,11 @@ <h2 id="installingthefraudforcesdkforandroid">Installing the FraudForce SDK for
102
103
}
103
104
</code></pre>
104
105
105
-
<p>Also in the application module’s <code>build.gradle</code> file, make sure that fraudforce-lib-release-4.2.0 is a compile-time dependency:</p>
106
+
<p>Also in the application module’s <code>build.gradle</code> file, make sure that fraudforce-lib-release-4.3.0 is a compile-time dependency:</p>
> __NOTE__ Regarding Android 11 background location changes: The FraudForce SDK neither requires nor requests location when the application is in a background state.
31
+
30
32
> __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.
31
33
32
34
> __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.
33
35
34
-
Version 4.2.0 of the iovation FraudForce SDK for Android supports Android 4.1 or higher.
36
+
Version 4.3.0 of the iovation FraudForce SDK for Android supports Android 5.0 or higher.
35
37
36
38
## Installing the FraudForce SDK for Android
37
39
38
-
1. Download iovation-android-sdk-4.2.0.zip from here: [iovation Mobile SDK for Android](https://github.com/iovation/deviceprint-SDK-Android).
40
+
1. Download iovation-android-sdk-4.3.0.zip from here: [iovation Mobile SDK for Android](https://github.com/iovation/deviceprint-SDK-Android).
39
41
40
-
2. Unzip iovation-android-sdk-4.2.0.zip.
42
+
2. Unzip iovation-android-sdk-4.3.0.zip.
41
43
42
44
3. Depending on your IDE, do one of the following:
43
45
44
46
- In __Eclipse and Maven__, deploy the AAR file to your local Maven repository, using maven-deploy. For more information, see [Guide to installing 3rd party JARs](http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html).
45
47
46
-
- If you are using __Android Studio with Gradle__, add the *fraudforce-lib-release-4.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-4.2.0.aar file accessible to Gradle.
48
+
- If you are using __Android Studio with Gradle__, add the *fraudforce-lib-release-4.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-4.3.0.aar file accessible to Gradle.
47
49
48
50
```
49
51
buildscript {
@@ -60,12 +62,12 @@ Version 4.2.0 of the iovation FraudForce SDK for Android supports Android 4.1 or
60
62
}
61
63
}
62
64
```
63
-
Also in the application module's `build.gradle` file, make sure that fraudforce-lib-release-4.2.0 is a compile-time dependency:
65
+
Also in the application module's `build.gradle` file, make sure that fraudforce-lib-release-4.3.0 is a compile-time dependency:
0 commit comments