- If your app uses pro-guard to obfuscate classes then the Apptics plugin will automatically upload the mapping file in the web console.
- Go to Quality > Symbols and mapping to verify if the pro-guard file is uploaded or not in the Apptics console.
- If the mapping file is not available, you can add the Pro-guard mapping file manually. Refer to Obfuscation user guide.
- If you want to turn off the automatic uploading 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]
}Use the below to turn off the automatic mapping file upload for specific build-variant.
Copiedapptics {
uploadProGuardMappingFile = ["<build-variant-name>": false]
}