├── android-studio-sample-app ├── kotlinApp │ ├── .gitignore │ ├── libs │ │ └── fraudforce-lib-release-5.3.0.aar │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ └── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── iovation │ │ │ │ └── mobile │ │ │ │ └── android │ │ │ │ └── sample │ │ │ │ └── kotlinApp │ │ │ │ ├── MainApplication.kt │ │ │ │ └── MainActivity.kt │ │ │ └── AndroidManifest.xml │ ├── proguard-rules.pro │ └── build.gradle ├── settings.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── app │ ├── libs │ │ └── fraudforce-lib-release-5.3.0.aar │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ ├── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── styles.xml │ │ │ │ └── strings.xml │ │ │ ├── menu │ │ │ │ └── menu_main.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ └── layout │ │ │ │ ├── activity_webview.xml │ │ │ │ └── activity_main.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── iovation │ │ │ │ └── mobile │ │ │ │ └── android │ │ │ │ └── sample │ │ │ │ └── sampleapp │ │ │ │ ├── MainApplication.java │ │ │ │ ├── NativeActivity.java │ │ │ │ └── WebViewActivity.java │ │ │ ├── assets │ │ │ └── JsInjectionIntegration.html │ │ │ └── AndroidManifest.xml │ ├── proguard-rules.pro │ └── build.gradle ├── build.gradle ├── gradle.properties ├── gradlew.bat └── gradlew ├── .gitignore ├── fraudforce-lib-release-5.3.0.aar ├── release-notes.md ├── .github └── workflows │ ├── release.yml │ └── main.yml ├── LICENSE ├── LICENSE.html ├── README.md └── README.html /android-studio-sample-app/kotlinApp/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.gradle/** 2 | **/build/ 3 | **/.idea/ 4 | -------------------------------------------------------------------------------- /android-studio-sample-app/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | include ':kotlinApp' 3 | -------------------------------------------------------------------------------- /fraudforce-lib-release-5.3.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/fraudforce-lib-release-5.3.0.aar -------------------------------------------------------------------------------- /android-studio-sample-app/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android-studio-sample-app/app/libs/fraudforce-lib-release-5.3.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/app/libs/fraudforce-lib-release-5.3.0.aar -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/libs/fraudforce-lib-release-5.3.0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/kotlinApp/libs/fraudforce-lib-release-5.3.0.aar -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/kotlinApp/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/kotlinApp/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/kotlinApp/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/kotlinApp/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/kotlinApp/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/kotlinApp/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/kotlinApp/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/kotlinApp/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/kotlinApp/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iovation/deviceprint-SDK-Android/HEAD/android-studio-sample-app/kotlinApp/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /release-notes.md: -------------------------------------------------------------------------------- 1 | ### What's new 2 | - **Java 11 is now required.** 3 | - **The SDK has updated Kotlin (2.0.20).** 4 | - Minimum SDK version supported is now 24. 5 | - Update target SDK to 35. 6 | - Adjusted collection details. 7 | - Additional optional permission. -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android-studio-sample-app/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Mar 30 14:27:27 EDT 2023 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Draft Release 2 | 3 | on: 4 | push: 5 | tags: 6 | - 'v*' 7 | 8 | jobs: 9 | 10 | build: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | - uses: ncipollo/release-action@v1 15 | with: 16 | artifacts: "fraudforce-lib*.aar" 17 | draft: true 18 | bodyFile: "release-notes.md" 19 | token: ${{ secrets.GITHUB_TOKEN }} 20 | -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/res/layout/activity_webview.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 12 | -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Click button to generate blackbox: 4 | Generate Blackbox 5 | TransUnion DeviceRisk 6 | Blackbox Result: 7 | Please wait while we print your device information 8 | SETTINGS 9 | 10 | -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | click button to generate blackbox: 4 | Generate Blackbox 5 | iovation deviceprint 6 | iovation webview 7 | bb result: 8 | please wait will we print your device 9 | SETTINGS 10 | 11 | -------------------------------------------------------------------------------- /android-studio-sample-app/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | mavenLocal() 6 | mavenCentral() 7 | google() 8 | } 9 | dependencies { 10 | classpath 'com.android.tools.build:gradle:8.9.0' 11 | classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.20' 12 | 13 | // NOTE: Do not place your application dependencies here; they belong 14 | // in the individual module build.gradle files 15 | } 16 | } 17 | 18 | allprojects { 19 | repositories { 20 | google() 21 | mavenCentral() 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /android-studio-sample-app/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/trevorchapman/CodingLibs/android-sdk-macosx/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/src/main/java/com/iovation/mobile/android/sample/kotlinApp/MainApplication.kt: -------------------------------------------------------------------------------- 1 | package com.iovation.mobile.android.sample.kotlinApp 2 | 3 | import android.app.Application 4 | import com.iovation.mobile.android.FraudForceConfiguration 5 | import com.iovation.mobile.android.FraudForceManager 6 | 7 | /** 8 | * Created by Jacob Schmit on 03/27/23. 9 | */ 10 | 11 | class MainApplication : Application() { 12 | override fun onCreate() { 13 | super.onCreate() 14 | val configuration = FraudForceConfiguration.Builder() 15 | .subscriberKey("M1WrRSwcjUBQmHamij3DxQJWr00YzfRhXaMkI+zhhiY=") 16 | .enableNetworkCalls(true) 17 | .build() 18 | 19 | FraudForceManager.initialize(configuration, applicationContext) 20 | } 21 | } -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/java/com/iovation/mobile/android/sample/sampleapp/MainApplication.java: -------------------------------------------------------------------------------- 1 | package com.iovation.mobile.android.sample.sampleapp; 2 | 3 | import android.app.Application; 4 | 5 | import com.iovation.mobile.android.FraudForceConfiguration; 6 | import com.iovation.mobile.android.FraudForceManager; 7 | 8 | /** 9 | * Created by trevorchapman on 11/14/17. 10 | */ 11 | 12 | public class MainApplication extends Application { 13 | @Override 14 | public void onCreate() { 15 | FraudForceConfiguration fraudForceConfiguration = new FraudForceConfiguration.Builder() 16 | .enableNetworkCalls(true) 17 | .subscriberKey("REPLACE WITH SUBSCRIBER KEY") 18 | .build(); 19 | 20 | FraudForceManager fraudForceManager = FraudForceManager.INSTANCE; 21 | fraudForceManager.initialize(fraudForceConfiguration, getApplicationContext()); 22 | super.onCreate(); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /android-studio-sample-app/gradle.properties: -------------------------------------------------------------------------------- 1 | # Project-wide Gradle settings. 2 | 3 | # IDE (e.g. Android Studio) users: 4 | # Gradle settings configured through the IDE *will override* 5 | # any settings specified in this file. 6 | 7 | # For more details on how to configure your build environment visit 8 | # http://www.gradle.org/docs/current/userguide/build_environment.html 9 | 10 | # Specifies the JVM arguments used for the daemon process. 11 | # The setting is particularly useful for tweaking memory settings. 12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m 13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 14 | 15 | # When configured, Gradle will run in incubating parallel mode. 16 | # This option should only be used with decoupled projects. More details, visit 17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects 18 | # org.gradle.parallel=true 19 | android.enableJetifier=true 20 | android.useAndroidX=true -------------------------------------------------------------------------------- /android-studio-sample-app/app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 31 5 | 6 | defaultConfig { 7 | applicationId "com.iovation.mobile.android.sample.sampleapp" 8 | namespace "com.iovation.mobile.android.sample.sampleapp" 9 | minSdkVersion 24 10 | targetSdkVersion 33 11 | versionCode 15 12 | versionName "5.3.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | lintOptions { 21 | abortOnError false 22 | } 23 | compileOptions { 24 | sourceCompatibility JavaVersion.VERSION_11 25 | targetCompatibility JavaVersion.VERSION_11 26 | } 27 | } 28 | 29 | dependencies { 30 | implementation fileTree(dir: 'libs', include: ['*.jar']) 31 | implementation files('libs/fraudforce-lib-release-5.3.0.aar') 32 | implementation "org.jetbrains.kotlin:kotlin-stdlib:1.5.30" 33 | } 34 | -------------------------------------------------------------------------------- /android-studio-sample-app/kotlinApp/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'com.android.application' 3 | id 'org.jetbrains.kotlin.android' 4 | } 5 | 6 | android { 7 | compileSdk 32 8 | 9 | defaultConfig { 10 | applicationId "com.iovation.mobile.android.sample.kotlinApp" 11 | namespace "com.iovation.mobile.android.sample.kotlinApp" 12 | minSdk 24 13 | targetSdk 34 14 | versionCode 15 15 | versionName "5.3.0" 16 | } 17 | 18 | buildTypes { 19 | release { 20 | minifyEnabled false 21 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 22 | } 23 | } 24 | compileOptions { 25 | sourceCompatibility JavaVersion.VERSION_11 26 | targetCompatibility JavaVersion.VERSION_11 27 | } 28 | kotlinOptions { 29 | jvmTarget = '11' 30 | } 31 | 32 | buildFeatures { 33 | viewBinding true 34 | } 35 | } 36 | 37 | dependencies { 38 | implementation 'androidx.appcompat:appcompat:1.0.0' 39 | implementation files('libs/fraudforce-lib-release-5.3.0.aar') 40 | implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.3' 41 | } -------------------------------------------------------------------------------- /android-studio-sample-app/app/src/main/assets/JsInjectionIntegration.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | My HTML 6 | 7 | 8 |

MyHTML

9 |
10 | 11 |
12 |
13 | 14 | 15 |
16 | 17 |
18 | 19 | 20 | 21 | 37 | 38 | 39 |