Open
Description
I am testing out the 7.x variant of Bugsnag for use with the new Android Gradle plugin. I get everything to work, except for uploading JVM mappings in combination with Proguard 7 Gradle plugin. Somehow it doesn't detect that mappings are available. I think it's because the new Proguard needs 'minifyEnabled' set to false.
I also tried uploading a mapping manually, but it says:
'uploadBugsnagReleaseMapping' not found in project ':project'. Some candidates are: 'uploadBugsnagNdkReleaseMapping'.
My config:
bugsnag {
uploadJvmMappings = true
uploadNdkMappings = true
overwrite = true
sharedObjectPaths = [new File("../debugSOs/obj")]
}
Am I missing something here? Can I use a workaround?