Android App Crashes After Proguard Obfuscation (google Plus People Search)
I added some code to my app to search people on Google Plus. This code works well without Proguard. After running proguard to obfuscate the code, my app crashes when searching for
Solution 1:
Can you try:
-keep classcom.google.api.services.plus.** { *; }
You can also check what gets taken away by looking at the proguard output files. EDIT - Your problem might be similar to these:
- http://softwyer.wordpress.com/2012/10/20/android-google-drive-sdk-and-proguard/
- Google Drive API doesn't play well with ProGuard (NPE)
These are for Drive, but the location of the NPE is similar, and they provide a working proguard config you can start with.
Post a Comment for "Android App Crashes After Proguard Obfuscation (google Plus People Search)"