android - Fabric (Crashlytics) does not deobfuscate exception stacktraces -
i've configured fabric maven , android-maven-plugin , can see test exceptions in fabric dashboard. i've obfuscated app can see obfuscated class/method names (i expect plugin upload proguard mapping , show deobfuscated stacktraces instead).
i've checked follow doc. can see 'mapping.txt' saved in ./target/proguard/mapping.txt
instead of ./target/proguard_map.txt
expected fabric. i've checked proguard.cfg
not contain -printmapping mapping.txt
.
i've tried fix adding mapping_location
fabric plugin (though it's not clear in doc plugin should added) this:
<plugin> <groupid>com.crashlytics</groupid> <artifactid>crashlytics-maven</artifactid> <version>1.12.0</version> <executions> <execution> <id>generateresources</id> <goals> <goal>generateresources</goal> </goals> </execution> <execution> <id>cleanupresources</id> <goals> <goal>cleanupresources</goal> </goals> </execution> </executions> <configuration> <mapping_location>${project.build.directory}/proguard/mapping.txt</mapping_location> </configuration> </plugin>
also can't see fabric plugin tries find , upload file server while building.
note: did not use fabric ide plugin , i've added app manually (it works exceptions logging except deobfuscating now). ideas?
ps. i'm usung android-maven-plugin 4.4.1 instead of 4.1.1 expected fabric (does make sense?)
Comments
Post a Comment