Look for proguard-project.txt in your android project directory (with the AndroidManifest.xml and various other .properites files.)
Pick one of the keywords to avoid having classes/members mangled by proguard to protect whatever you are calling/want called back: http://proguard.sourceforge.net/index.html#manual/examples.html proguard will re-name everything it can, and will do (what it thinks is) dead code removal (which it can only guess at what outside code might want to run in your code, and often gets it wrong.) The -keep options in the configuration file will tell proguard not to obfuscate the name or remove the code (if it thinks it's unused.) Dan S. On Thursday, September 26, 2013 3:24:23 PM UTC-4, 12169 wrote: > > Hi , can you please explain...or provide demo wt to do? > > On Wednesday, September 25, 2013 11:53:14 PM UTC-7, Andrew Mackenzie wrote: >> >> Look at the classes youbarebusing tibdi that, then add instructions to >> your proguard config file (in project root) to have it NOT obfuscate or >> remove those classes or methods or the classes or methods they access by >> name. > > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

