剛升級的SDK2.3只是裝上了還沒細看。今天一看,呵呵,有收獲了。
2.3SDK的兩個新特點:
1.剛安裝上2.3時,查看sdk目錄,發現在<SDK_PATH>/tools下新增了一文件夾“proguard”,如下圖,我就在想是不是Google終於官方對proguard考慮進去了。理論上,對java的混淆都是可以的,但關鍵在於如何編寫proguard的混淆腳本。
2.使用SDK2.3後,新建的工程下和之前相比,都會多了一個文件“proguard.cfg”。一打開,相當驚喜,這就是混淆所需的proguard腳本啊。
如下圖:
其代碼如下:
[java]
- -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等基本組件。
並保留了所有的Native變量名及類名,所有類中部分以設定了固定參數格式的構造函數,枚舉等等。(詳細信息請參考<proguard_path>/examples中的例子及注釋。)
好了,進行得差不多了,下面就來看看如何真正的生成混淆APK吧。這兒又得提醒一下,SDK新的特性在文檔裡都是有的,所以文檔很重要。
查看SDK2.3的文檔,在路徑“<androidSDK_path>/docs/guide/developing/tools/proguard.html”的“Enabling ProGuard ”中是這樣描述的:
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”,如下圖:
這樣就已經設置好ADT的混淆操作了。接下來就是正常的打包和簽名了。。
下圖是我混淆SDK Demo中自帶的Notepad效果圖:
哈哈,你也去試下吧。