Setup
Supported versions
Platform | Supported versions |
---|---|
Android | 5.0.0+ |
Add Ironchip Location Based Fraud SDK
Add our library in other projects
First, on the setting.gradle file, reference the remote repository where the library is located.
dependencyResolutionManagement {
...
repositories {
maven { url 'https://jitpack.io' }
...
}
}
Then, inside the gradle.build file, add the dependency to the sdk.
dependencies {
...
implementation 'com.github.Ironchip-Security:LBFraud-SDK-Android:1.2.13'
...
}
Permissions
Add the following permissions to your manifest:
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
Updated: October 16, 2023