編輯:關於Android編程
混淆器(ProGuard)
混淆器通過刪除從未用過的代碼和使用晦澀名字重命名類、字段和方法,對代碼進行壓縮,優化和混淆。結果是一個比較小的.apk文件,該文件比較難進行逆向project。因此,當你的應用程序對安全敏感(要求高),比如當你授權應用程序的時候,混淆器是一種重要的保護手段。
混淆器被集成在android 構建系統中,所以你不必手動調用它。同一時候混淆器僅在公布模式下進行構建應用程序的時候才會執行起來,所以在調試模式下構建程序時,你不必處理混淆代碼。讓混淆器執行起來是可選擇的,可是推薦選上。
1. 改動project.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 edit # "ant.properties", and override values to adapt the script to your # project structure. # # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt # Project target. target=android-19
將proguard.config前面的凝視去掉
2. 改動proguard-project.txt
# To enable ProGuard in your project, edit project.properties # to define the proguard.config property as described in that file. # # Add project specific ProGuard rules here. # By default, the flags in this file are appended to flags specified # in ${sdk.dir}/tools/proguard/proguard-android.txt # You can edit the include path and order by changing the ProGuard # include property in project.properties. # # For more details, see # http://developer.android.com/guide/developing/tools/proguard.html # Add any project specific keep options here: # If your project uses WebView with JS, uncomment the following # and specify the fully qualified class name to the JavaScript interface # class: #-keepclassmembers class fqcn.of.javascript.interface.for.webview { # public *; #}
假設在程序中使用了第三方的`jar`包,在混淆後導致出錯,這時我們須要在proguard-project.txt中去進行對應的配置,來讓其在混淆時不要混淆對應的jar包。對改配置文件裡的相關配置解釋例如以下:
```java -keep public class * extends android.app.Activity 【不進行混淆類名的類,保持其原類名和包名】 -keep public abstract interface com.asqw.android.Listener{ public protected <methods>; 【全部public protected的方法名不進行混淆】 } -keep public class com.asqw.android{ public void Start(java.lang.String); 【對該方法不進行混淆】 } -keepclasseswithmembernames class * { 【對全部類的native方法名不進行混淆】 native <methods>; } -keepclasseswithmembers class * { 【對全部類的指定方法的方法名不進行混淆】 public <init>(android.content.Context, android.util.AttributeSet); } -keepclassmembers class * extends android.app.Activity {【對全部類的指定方法的方法名不進行混淆】 public void *(android.view.View); } -keepclassmembers enum * {【對枚舉類型enum的全部類的下面指定方法的方法名不進行混淆】 public static **[] values(); public static ** valueOf(java.lang.String); } -keep class * implements android.os.Parcelable {【對實現了Parcelable接口的全部類的類名不進行混淆,對其成員變量為Parcelable$Creator類型的成員變量的變量名不進行混淆】 public static final android.os.Parcelable$Creator *; } -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; } -keep public class com.unionpay.** {*; }【對com.unionpay包下全部的類都不進行混淆,即不混淆類名,也不混淆方法名和變量名】 ```
經過上面這兩部之後反編譯後就能混淆了,可是四大組件還在,為什麼四大組件還在呢,由於四大組件是在清單文件裡進行配置的,假設混淆後就不能依據清單文件的配置去尋找了。
假設對於一些自己的代碼中要想提供出來讓別人通過反射調用的方法時,我們不想讓部分代碼被混淆,或者是我們使用別人提供的第三方jar包,由於第三方的jar包一般都是已經混淆過的,我們要是再混淆就會報錯了,所以我們要保證這些內容不用混淆,這裡我們僅僅需改動這個文件,然後加上後面的一句話,他就不會混淆我們給出的內容
-keepattributes *Annotation* -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 * extends android.app.backup.BackupAgent -keep public class * extends android.preference.Preference -keep public class * extends android.support.v4.app.Fragment -keep public class * extends android.app.Fragment -keep public class com.android.vending.licensing.ILicensingService -keep class com.itheima.mobilesafe.engine.AppInfoProvider -keep class net.youmi.android.** { *; }
代碼不多,就懶得加注釋了.原諒我的懶. 縮略圖獲取那塊,沒有加用線程.可能會在有些低端機上面或者高清的視頻會出現FC的情況.需要的童鞋.自行添加. &nb
本文以實例形式較為詳細的展示了Android錄音的實現方法,分享給大家供大家參考之用。具體方法如下:首先是xml布局文件:<LinearLayout xmlns:a
android-async-http開源項目可以是我們輕松的獲取網絡數據或者向服務器發送數據,使用起來非常簡單,關於android-async-http開源項目的介紹內
關於使用MarkDown編輯器的原因 其實前段時間就支持使用MarkDown編輯器來寫博客了,只是由於當時接觸過MarkDown,所以之前的博客都是使用默認的HTML編輯