proguard . config = $ { sdk . dir }/ tools / proguard / proguard - android . txt : proguard- project . txt
# This is a configuration file forProGuard. #http://proguard.sourceforge.net/index.html#manual/usage.html -dontusemixedcaseclassnames - dontskipnonpubliclibraryclasses - verbose #Optimization is turned off by default. Dex does not like coderun #through the ProGuard optimize and preverify steps (and performssome #of these optimizations on itsown). - dontoptimize - dontpreverify #Note that if you want to enable optimization, you cannotjust #include optimization flags in your own project configurationfile; # instead you will need to point tothe #"proguard-android-optimize.txt" file instead of this one fromyour #project.properties file. -keepattributes * Annotation * - keep public class com . google . vending . licensing .ILicensingService - keep public class com . android . vending . licensing .ILicensingService #For native methods, seehttp://proguard.sourceforge.net/manual/examples.html#native -keepclasseswithmembernames class * { native ; } #keep setters in Views so that animations can stillwork. # seehttp://proguard.sourceforge.net/manual/examples.html#beans - keepclassmemberspublic class * extends android . view . View { void set *(***); *** get *(); } #We want to keep methods in Activity that could be used in the XMLattribute onClick -keepclassmembers class * extends android . app . Activity { public void *( android .view . View ); } #For enumeration classes, seehttp://proguard.sourceforge.net/manual/examples.html#enumerations -keepclassmembers enum * { public static **[] values (); public static ** valueOf ( java. lang . String ); } - keep class * implements android . os . Parcelable { public staticfinal android . os . Parcelable$Creator *; } - keepclassmembers class **. R$ * {public static ; } #The support library contains references to newer platformversions. # Don't warn about those in case this appis linking against an older # platform version. We know about them,and they are safe. - dontwarnandroid .support .**
以下则个是我们项目 混淆的个性化配置文件 proguard-project.txt# To enable ProGuard in your project, editproject.properties # to define the proguard.config propertyas described in that file. # # Add project specific ProGuard ruleshere. # By default, the flags in this file areappended to flags specified # in${sdk.dir}/tools/proguard/proguard-android.txt #You can edit the include path and order by changing theProGuard # include property inproject.properties. # # For more details,see #http://developer.android.com/guide/developing/tools/proguard.html #Add any project specific keep optionshere: # If your project uses WebView with JS,uncomment the following # and specify the fully qualified classname to the JavaScriptinterface #class: #-keepclassmembers classfqcn.of.javascript.interface.for.webview{ #public *; #} - dontwarnandroid .** -dontwarnedu . edut . lsf . payment . link .** - libraryjars ..\Download_Install\lib\classes . jar - keep class org . jboss . netty . util . internal .AtomicFieldUpdaterUtil - keep class org . jboss . netty . util . internal .AtomicFieldUpdaterUtil$Node - keep class org . jboss . netty . util . internal .LinkedTransferQueue$Node - keep class edu . edut . robin . activities .LeWebJsActivity$AppStoreInterface - keepclasseswithmembers class * { publicstatic void main ( java . lang . String []); } - keepclasseswithmembers class org .jboss . netty . util . internal . AtomicFieldUpdaterUtil$Node { *; } -keepclasseswithmembers class edu . edut . robin . activities .LeWebActionActivity$AppstoreWebInterface { *; } - keepclasseswithmembers classedu . edut . robin . utils . SilentInstallAssistant$ * { *; } - keepclasseswithmembersclass edu . edut . robin . silentinstaller . utils . SilentInstallAssistant$ * { *; } -keepclasseswithmembers class edu . edut . robin . utils . Pm$ * { *; } -keepclasseswithmembers class org . jboss . netty . util . internal .LinkedTransferQueue { volatile transient org . jboss . netty . util . internal .LinkedTransferQueue$Node head ; volatile transient org . jboss . netty . util . internal .LinkedTransferQueue$Node tail ; volatile transient int sweepVotes ; } -keepclasseswithmembers class org . jboss . netty . util . internal .LinkedTransferQueue$Node { *; } - keepclasseswithmembers class edu . edut .robin . activities . LeWebJsActivity$AppStoreInterface { *; } -keepclasseswithmembers class * extends edu . edut . lsf . payment .WebSubmitInterface { *; } - keepclasseswithmembers class edu . edut . lsf . payment. WebSubmitInterface { *; } - keep public class com . unionpay .** {*; } - keep publicclass edu . edut . lsf .** {*; }
注:由于牵扯到保密的问题,一些关于项目的东西换成了edu.edut或edu.edut.robin