在2.3版本的sdk中可以看到在ANDROID_SDK _PATH/tools/下面多了一個proguard檔案夾,google把proguard技術放在了android sdk裡面,現在已經可以通過正常的編譯方式實現代碼混淆了。
在2.3版本以後,無論開發用的是哪一個版本的SDK,建立一個工程裡面都會有default.properties和proguard.cfg兩個檔案。(http://www.my400800.cn )
proguard4.6.zip 下載
預設的default.properties代碼如下:
# This file is automatically generated by Android Tools.# Do not modify this file -- YOUR CHANGES WILL BE ERASED!## This file must be checked in Version Control Systems.## To customize properties used by the Ant build system use,# "build.properties", and override values to adapt the script to your# project structure.# Project target.target=android-9
預設的proguard.cfg中也已經有了混淆代碼的指令碼:
-optimizationpasses 5-dontusemixedcaseclassnames-dontskipnonpubliclibraryclasses-dontpreverify-verbose-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*-keep public class * extends android.app.Activity-keep public class * extends android.app.Application-keep public class * extends android.app.Service-keep public class * extends android.content.BroadcastReceiver-keep public class * extends android.content.ContentProvider-keep public class com.android.vending.licensing.ILicensingService-keepclasseswithmembernames class * { native <methods>;}-keepclasseswithmembernames class * { public <init>(android.content.Context, android.util.AttributeSet);}-keepclasseswithmembernames class * { public <init>(android.content.Context, android.util.AttributeSet, int);}-keepclassmembers enum * { public static **[] values(); public static ** valueOf(java.lang.String);}-keep class * implements android.os.Parcelable { public static final android.os.Parcelable$Creator *;}
從指令碼中可以看到:
- 混淆中保留了繼承自Activity、Service、Application、BroadcastReceiver、 ContentProvider等基本組件以及com.android.vending.licensing.ILicensingService。
- 保留了所有的Native變數名及類名,所有類中部分已設定了固定參數格式的建構函式,枚舉等等。
詳細資料參考<proguard_path>/examples中的例子及注釋。
使用代碼混淆
依據官方文檔所說:
To enable ProGuard so that it runs as part of an Ant or Eclipse build, set the proguard.config property in the <project_root>/default.properties file. The path can be an absolute path or a path relative to the project's root.
修改default.properties檔案,加上一句:
proguard.config=proguard.cfg
加完後如下面的樣子:
proguard.config=proguard.cfg # This file is automatically generated by Android Tools.# Do not modify this file -- YOUR CHANGES WILL BE ERASED!## This file must be checked in Version Control Systems.## To customize properties used by the Ant build system use,# "build.properties", and override values to adapt the script to your# project structure.# Project target.target=android-9proguard.config=proguard.cfg
然後正常的編譯簽名即可產生一個經過代碼混淆的apk。
如果編譯出現警告可以在【proguard.cfg】檔案中添加【-ignorewarnings】忽略警告項目進行混淆處理。
Eclipse+ADT進行Android應用程式的代碼混淆和簽名 圖解啟動代碼混淆功能
在較新版本的Android tools和ADT,項目工程裡面是帶有proguard.cfg的代碼混淆設定檔,但預設是沒有啟動這個配置的,需要手動地在default.properties裡面添加指定這個設定檔:
# Project target.target=android-3proguard.config=proguard.cfg然後按F5重新整理當前項目工程,這時候Eclipse檢測了檔案的變動而重新編譯! 產生簽名發布apk 1.Eclipse工程中右鍵工程,彈出選項中選擇 android工具-產生簽名應用程式套件:
2.選擇需要打包的android項目工程(註:這裡會自動選擇當前的Project的):
3.如果已有私密金鑰檔案,選擇私密金鑰檔案 輸入密碼,如果沒有私密金鑰檔案見 第6和7步建立私密金鑰檔案:
4.輸入私密金鑰別名和密碼:
5.選擇APK儲存的位置,並完成設定 開始產生:
6.沒有私密金鑰檔案的情況,建立私密金鑰檔案(註:這裡私密金鑰檔案的Location位置最好自己選擇一個新位置,便於牢記,而且最好把這個私密金鑰檔案備份到其他地方去以免丟失,因為應用程式的更新需要同一私密金鑰檔案):
7.輸入私密金鑰檔案所需資訊,並建立(註:這裡的密碼是用於Key的別名的,和上面的KeyStore檔案的不同,這點可以看步驟3和4。另外下面的名字,開發人員資料等是不需要全部填寫的,dialog會有提示的):
這時候產生的apk,我發現是比debug版本的要小!如果你發現沒有變小的話,請確認項目工程是重新編譯的!但代碼混淆的效果一般般,基本上還是可以看到原來的語句!
如果運行上面的代碼出現錯誤請下載 proguard4.6.rar解壓後把目錄下面的 lib 目錄中的檔案複製到 【androidsdk的Developer目錄下的lib目錄下面就可以了】