Installation
                            
    
    View product
v0.23.0
                        
                        Malwarelytics for Android is distributed as a Maven artifact in a private artifact repository.
Malwarelytics for Android supports Android 5.1 (SDK version 22) and above.
Personalized Configuration Required.
In order to use Malwarelytics for Android, you need a custom configuration and access credentials for both the service and the artifact repository. Contact your sales representative or technical consultant to obtain the necessary prerequisites.
Adding Maven Repository
Add a new Maven repository pointing to Wultra Artifactory:
repositories {
    maven {
        url 'https://wultra.jfrog.io/artifactory/malwarelytics-android/'
        credentials {
            username = wultraArtifactoryUsername
            password = wultraArtifactoryPass
        }
    }
}
Adding Project Dependency
Once you have configured the Maven repository, you can add Malwarelytics as a dependency to your Android project:
android {
    dependencies {
        implementation "com.wultra.android.antimalware:antivirus:${WULTRA_APP_PROTECTION_VERSION}"
    }
}
Read Next
Last updated on Nov 21, 2022 (10:17)
    
    View product