[android-developers] Re: android proguard is not working for the that is activated by the reflection?
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:
-- 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 android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
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 android-developers+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home