Note: The latest $VERSION
is 24.0.01
The Mobile Protect SDK for native Android apps is distributed via Maven. This document will take you through the steps to integrate SDK into your build system. For other guides, check out Mobile Protect Installation Guides
...
https://datatheorem.atlassian.net/wiki/x/EgDcgQ
Optional: Disable for specific tasks
If your app uses some other bytecode modifying tools such as Jacoco for code coverage, it might create conflicts, MobileProtect offers you the possibility to disable it for those specific tasks.
For example, to disable it when running gradle testCoverage
, you can add this config in your root build.gradle
Code Block |
---|
MobileProtectPluginConfiguration {
excludeForTasks = mutableListOf("testCoverage")
} |
Hilt compatibility:
If you are using Dagger Hilt, you may need to add the following config to your App’s build.gradle
...