Android如何防止apk程序被反編譯

作爲Android應用開發者,不得不面對一個尷尬的局面,就是自己辛辛苦苦開發的應用可以被別人很輕易的就反編譯出來。

Google似乎也發現了這個問題,從SDK2.3開始我們可以看到在android-sdk-windows\tools\下面多了一個proguard文件夾

proguard是一個java代碼混淆的工具,通過proguard,別人即使反編譯你的apk包,也只會看到一些讓人很難看懂的代碼,從而達到保護代碼的作用。

下面具體說一說怎麼樣讓SDK2.3下的proguard.cfg文件起作用,先來看看android-sdk-windows\tools\lib\proguard.cfg的內容:


  1. -optimizationpasses 5

  2. -dontusemixedcaseclassnames

  3. -dontskipnonpubliclibraryclasses

  4. -dontpreverify

  5. -verbose

  6. -optimizations !code/simplification/arithmetic,!field/*,!class/merging/*

  7. -keep public class * extends android.app.Activity

  8. -keep public class * extends android.app.Application

  9. -keep public class * extends android.app.Service

  10. -keep public class * extends android.content.BroadcastReceiver

  11. -keep public class * extends android.content.ContentProvider

  12. -keep public class * extends android.app.backup.BackupAgentHelper

  13. -keep public class * extends android.preference.Preference

  14. -keep public class com.android.vending.licensing.ILicensingService

  15. -keepclasseswithmembernames class * {

  16. native <methods>;

  17. }

  18. -keepclasseswithmembernames class * {

  19. public <init>(android.content.Context, android.util.AttributeSet);

  20. }

  21. -keepclasseswithmembernames class * {

  22. public <init>(android.content.Context, android.util.AttributeSet, int);

  23. }

  24. -keepclassmembers enum * {

  25. public static **[] values();

  26. public static ** valueOf(java.lang.String);

  27. }

  28. -keep class * implements android.os.Parcelable {

  29. public static final android.os.Parcelable$Creator *;

  30. }


從腳本中可以看到,混淆中保留了繼承自Activity、Service、Application、BroadcastReceiver、ContentProvider等基本組件以及com.android.vending.licensing.ILicensingService,

並保留了所有的Native變量名及類名,所有類中部分以設定了固定參數格式的構造函數,枚舉等等。(詳細信息請參考<proguard_path>/examples中的例子及註釋。)

讓proguard.cfg起作用的做法很簡單,就是在eclipse自動生成的default.properties文件中加上一句“proguard.config=proguard.cfg”就可以了

完整的default.properties文件應該如下:


  1. # This file is automatically generated by Android Tools.

  2. # Do not modify this file -- YOUR CHANGES WILL BE ERASED!

  3. #

  4. # This file must be checked in Version Control Systems.

  5. #

  6. # To customize properties used by the Ant build system use,

  7. # "build.properties", and override values to adapt the script to your

  8. # project structure.

  9. # Project target.

  10. target=android-9

  11. proguard.config=proguard.cfg


大功告成,正常的編譯簽名後就可以防止代碼被反編譯了。反編譯經過代碼混淆的apk得到的代碼應該類似於下面的效果,是很難看懂的:


0_1294656653m2Q9.gif


如果您使用的是2.3之前的SDK版本也沒關係,把上面的proguard.cfg文件複製一份放到項目中,然後進行相同的操作即可


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章