Difficulties setting up Gradle to send ProGuard mapping files to Firebase
Just add
afterEvaluate {
assembleRelease.doLast {
firebaseUploadReleaseProguardMapping.execute()
}
}
In the android
section of build.gradle
file.
This will automatically upload the ProGuard mappings file to Firebase as well as run/deploy the APK to the device using ADB.