android 通過添加proguard.cfg檔案實現代碼混淆

來源:互聯網
上載者:User

標籤:android   style   blog   class   code   java   

若項目中沒有proguard.cfg檔案,手動添加

建立文本,輸入以下代碼

-dontwarn  //若項目中匯入了第三方jar包,需要添加該行-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 *;}

重新命名文本為proguard.cfg

將該檔案複製到項目中,與AndroidManifest.xml檔案在同一層

 

開啟project.properties檔案,添加以下內容

proguard.config=proguard.cfg

 

儲存,右擊項目名->Android-Tools->Export Unsigned Application Package

產生項目apk,混淆完成

 

若該過程中報 java.io.IOException: Please correct the above warnings這個錯誤,可能是忘記在proguard.cfg中添加  -dontwarn  添加後重試。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.