Proguard Mapping
- If your application uses Pro-Guard then add the following in your proguard-rules.pro.
Copied-keep class com.zoho.apptics.**
-dontwarn com.zoho.apptics.**
- If your app uses pro-guard to obfuscate classes then the Apptics plugin will automatically upload the mapping file in the web console.
- You can verify whether the mapping file is uploaded in the web console under Quality > Proguard.
- If the mapping file is not available in the web console, you can add the Pro-guard mapping file manually, refer to Obfuscation under Crash reporting.
- If you want to turn off the automatic upload of Pro-guard files, set uploadProGuardMappingFile property to false.
Note: If the mapping file with the same package name, version code, version name, and apptics mode is already available in the server, it will be replaced by the new mapping file. Also, mapping upload task depends on the assemble Gradle task.
Copiedapptics {
uploadProGuardMappingFile = ["default": false]
}