Can anyone share with sample/simple obfuscation ANT task for Android? Provided that I do have complete APK and I need just pass *class hru Proguard and then prepare *.dex to build APK
|
feedback
|
|
The Android build process first compiles Java source files (.java) to Java class files (.class), then converts these class files into Dalvik code (classes.dex), and finally packages this Dalvik code in an APK file. ProGuard reads and writes Java class files, so it has to be inserted into this pipeline between the compilation step and the conversion step. It doesn't read or write Dalvik code itself, so it can't work on the APK file. The Android SDK documentation on ProGuard discusses how to enable the obfuscation step in the Ant build for android-9. In short, you have to add a line "proguard.config=proguard.cfg" to the file default.properties, and then run "ant release". | |||||||||
feedback
|
|
I have found solution:
UPDATE complete build.xml
| |||||||||
feedback
|
|
The proGuard obfuscation process needs .class files so you can't launch an Ant before IDE build (.java) or after (.dex packed). Have a look on this post where it's explained how add the proGuard step in your global Ant build: http://www.androidengineer.com/2010/07/optimizing-obfuscating-and-shrinking.html If you really want to use the IDEA build, you can try the following.
Sorry that I don't attach you the links of apktool and dexjar but as I'm newbie I can't post more than one hyperlink. | |||
|
feedback
|