Skip to content

Commit 07e73a2

Browse files
Release v4.1.0
1 parent 5e91b59 commit 07e73a2

File tree

5 files changed

+32
-22
lines changed

5 files changed

+32
-22
lines changed

README.html

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ <h2 id="androidintegrationfilesandrequirements">Android Integration Files and Re
3636
<tbody>
3737
<tr>
3838
<td> <strong>SDK Filename</strong> </td>
39-
<td> fraudforce-lib-release-4.0.0.aar </td>
39+
<td> fraudforce-lib-release-4.1.0.aar </td>
4040
</tr>
4141
<tr>
4242
<td> <strong>Version</strong> </td>
43-
<td> 4.0.0 </td>
43+
<td> 4.1.0 </td>
4444
</tr>
4545
<tr>
4646
<td> <strong>Package</strong> </td>
@@ -73,18 +73,18 @@ <h2 id="androidintegrationfilesandrequirements">Android Integration Files and Re
7373
<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>
7474
</blockquote>
7575

76-
<p>Version 4.0.0 of the iovation FraudForce SDK for Android supports Android 4.1 or higher.</p>
76+
<p>Version 4.1.0 of the iovation FraudForce SDK for Android supports Android 4.1 or higher.</p>
7777

7878
<h2 id="installingthefraudforcesdkforandroid">Installing the FraudForce SDK for Android</h2>
7979

8080
<ol>
81-
<li><p>Download iovation-android-sdk-4.0.0.zip from here: <a href="https://github.com/iovation/deviceprint-SDK-Android">iovation Mobile SDK for Android</a></p></li>
82-
<li><p>Unzip iovation-android-sdk-4.0.0.zip.</p></li>
81+
<li><p>Download iovation-android-sdk-4.1.0.zip from here: <a href="https://github.com/iovation/deviceprint-SDK-Android">iovation Mobile SDK for Android</a></p></li>
82+
<li><p>Unzip iovation-android-sdk-4.1.0.zip.</p></li>
8383
<li><p>Depending on your IDE, do one of the following:</p>
8484

8585
<ul>
8686
<li><p>In <strong>Eclipse and Maven</strong>, deploy the AAR file to your local Maven repository, using maven-deploy. For more information, see <a href="http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html">Guide to installing 3rd party JARs</a>.</p></li>
87-
<li><p>If you are using <strong>Android Studio with Gradle</strong>, add the <em>fraudforce-lib-release-4.0.0.aar</em> file to your application module&#8217;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.0.0.aar file accessible to Gradle.</p>
87+
<li><p>If you are using <strong>Android Studio with Gradle</strong>, add the <em>fraudforce-lib-release-4.1.0.aar</em> file to your application module&#8217;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.1.0.aar file accessible to Gradle.</p>
8888

8989
<pre><code>buildscript {
9090
repositories {
@@ -101,11 +101,11 @@ <h2 id="installingthefraudforcesdkforandroid">Installing the FraudForce SDK for
101101
}
102102
</code></pre>
103103

104-
<p>Also in the application module&#8217;s <code>build.gradle</code> file, make sure that fraudforce-lib-release-4.0.0 is a compile-time dependency:</p>
104+
<p>Also in the application module&#8217;s <code>build.gradle</code> file, make sure that fraudforce-lib-release-4.1.0 is a compile-time dependency:</p>
105105

106106
<pre><code>dependencies {
107107
compile fileTree(dir: 'libs', include: ['*.jar'])
108-
compile(name:'fraudforce-lib-release-4.0.0', ext:'aar')
108+
compile(name:'fraudforce-lib-release-4.1.0', ext:'aar')
109109
}
110110
</code></pre>
111111

@@ -140,7 +140,7 @@ <h2 id="integratingintonativeapps">Integrating into Native Apps</h2>
140140
</code></pre></li>
141141
<li><p>Initialize the FraudForceManager class using the generated FraudForceConfiguration object, and the context.</p>
142142

143-
<pre><code>FraudForceManager fraudForceManager = FraudForceManager.getInstance(context);
143+
<pre><code>FraudForceManager fraudForceManager = FraudForceManager.getInstance();
144144
fraudForceManager.initialize(configuration, context);
145145
</code></pre></li>
146146
<li><p>Call the <code>refresh()</code> method in the same Activity or Fragment where <code>getBlackbox()</code> will be called. The integrating application only needs to call this method on the Fragments where the <code>getBlackbox()</code> method will be called.</p>
@@ -277,7 +277,7 @@ <h2 id="compilingthesampleappinandroidstudio">Compiling The Sample App in Androi
277277

278278
<ol>
279279
<li><p>In Android Studio, select File | Open or click <strong>Open Existing Android Studio Project</strong> from the quick-start screen.</p></li>
280-
<li><p>From the directory where you unzipped fraudforce-lib-release-4.0.0.zip, open the <strong>android-studio-sample-app</strong> directory.</p></li>
280+
<li><p>From the directory where you unzipped fraudforce-lib-release-4.1.0.zip, open the <strong>android-studio-sample-app</strong> directory.</p></li>
281281
<li><p>In the project navigation view, open <code>src/main/java/com/iovation/mobile/android/sample/MainActivity.java</code></p></li>
282282
<li><p>Right-click the file editing view and select <em>Run Main Activity</em>.</p>
283283

@@ -292,6 +292,12 @@ <h2 id="compilingthesampleappinandroidstudio">Compiling The Sample App in Androi
292292

293293
<h2 id="changelog">Changelog</h2>
294294

295+
<h3 id="4.1.0">4.1.0</h3>
296+
297+
<ul>
298+
<li><p>Adjusted recognition details.</p></li>
299+
</ul>
300+
295301
<h3 id="4.0.0">4.0.0</h3>
296302

297303
<ul>

README.md

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ The iovation FraudForce SDK integrates with native and hybrid apps. Hybrid apps
1717

1818
| | |
1919
|---------------------------------|-------------------------------------------------------------------------------------------------------------------|
20-
| **SDK Filename** | fraudforce-lib-release-4.0.0.aar |
21-
| **Version** | 4.0.0 |
20+
| **SDK Filename** | fraudforce-lib-release-4.1.0.aar |
21+
| **Version** | 4.1.0 |
2222
| **Package** | com.iovation.mobile.android.FraudForce |
2323
| **Android SDK Dependencies** | Android SDK 4.1 or higher (SDK level 16) |
2424
| **Library Dependencies** | None |
@@ -28,19 +28,19 @@ The iovation FraudForce SDK integrates with native and hybrid apps. Hybrid apps
2828

2929
> __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.
3030
31-
Version 4.0.0 of the iovation FraudForce SDK for Android supports Android 4.1 or higher.
31+
Version 4.1.0 of the iovation FraudForce SDK for Android supports Android 4.1 or higher.
3232

3333
## Installing the FraudForce SDK for Android
3434

35-
1. Download iovation-android-sdk-4.0.0.zip from here: [iovation Mobile SDK for Android](https://github.com/iovation/deviceprint-SDK-Android)
35+
1. Download iovation-android-sdk-4.1.0.zip from here: [iovation Mobile SDK for Android](https://github.com/iovation/deviceprint-SDK-Android)
3636

37-
2. Unzip iovation-android-sdk-4.0.0.zip.
37+
2. Unzip iovation-android-sdk-4.1.0.zip.
3838

3939
3. Depending on your IDE, do one of the following:
4040

4141
- 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).
4242

43-
- If you are using __Android Studio with Gradle__, add the *fraudforce-lib-release-4.0.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.0.0.aar file accessible to Gradle.
43+
- If you are using __Android Studio with Gradle__, add the *fraudforce-lib-release-4.1.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.1.0.aar file accessible to Gradle.
4444

4545
```
4646
buildscript {
@@ -57,12 +57,12 @@ Version 4.0.0 of the iovation FraudForce SDK for Android supports Android 4.1 or
5757
}
5858
}
5959
```
60-
Also in the application module's `build.gradle` file, make sure that fraudforce-lib-release-4.0.0 is a compile-time dependency:
60+
Also in the application module's `build.gradle` file, make sure that fraudforce-lib-release-4.1.0 is a compile-time dependency:
6161

6262
```
6363
dependencies {
6464
compile fileTree(dir: 'libs', include: ['*.jar'])
65-
compile(name:'fraudforce-lib-release-4.0.0', ext:'aar')
65+
compile(name:'fraudforce-lib-release-4.1.0', ext:'aar')
6666
}
6767
```
6868
@@ -95,7 +95,7 @@ To integrate into native apps:
9595
3. Initialize the FraudForceManager class using the generated FraudForceConfiguration object, and the context.
9696
9797
```
98-
FraudForceManager fraudForceManager = FraudForceManager.getInstance(context);
98+
FraudForceManager fraudForceManager = FraudForceManager.getInstance();
9999
fraudForceManager.initialize(configuration, context);
100100
```
101101
@@ -228,7 +228,7 @@ The SDK includes the ability to make a network call to iovation's service. This
228228
229229
1 In Android Studio, select File | Open or click **Open Existing Android Studio Project** from the quick-start screen.
230230
231-
2. From the directory where you unzipped fraudforce-lib-release-4.0.0.zip, open the **android-studio-sample-app** directory.
231+
2. From the directory where you unzipped fraudforce-lib-release-4.1.0.zip, open the **android-studio-sample-app** directory.
232232
233233
3. In the project navigation view, open `src/main/java/com/iovation/mobile/android/sample/MainActivity.java`
234234
@@ -244,6 +244,10 @@ The SDK includes the ability to make a network call to iovation's service. This
244244
245245
## Changelog
246246
247+
### 4.1.0
248+
249+
- Adjusted recognition details.
250+
247251
### 4.0.0
248252
249253
- Enhanced support for Android 9.0 Pie.

android-studio-sample-app/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ android {
99
minSdkVersion 16
1010
targetSdkVersion 28
1111
versionCode 1
12-
versionName "4.0.0"
12+
versionName "4.1.0"
1313
}
1414
buildTypes {
1515
release {
@@ -44,5 +44,5 @@ repositories {
4444

4545
dependencies {
4646
api fileTree(dir: 'libs', include: ['*.jar'])
47-
api(name:'fraudforce-lib-release-4.0.0', ext:'aar')
47+
api(name:'fraudforce-lib-4.1.0-release', ext:'aar')
4848
}
Binary file not shown.

0 commit comments

Comments
 (0)