androidコード混同proguard
最近、会社はクライアントの新しいバージョンを発表します.セキュリティ情報にかかわるため、プログラムのキーコードを混同する必要があります.Proguardを使用する必要があります.
AndroidにはProguardが統合されており、プロファイルでproguardを有効にするだけで済みます.
androidデフォルトproguard.cfgは以下の通りである.
スクリプトから分かるように、混同にはActivity、Service、Application、BroadcastReceiver、ContentProviderなどの基本コンポーネントcomが継承する.android.vending.licensing.ILicensingServiceは、Native変数名およびクラス名をすべて保持し、すべてのクラスの一部は固定パラメータフォーマットが設定されたコンストラクション関数、列挙などである.(詳細は/examplesの例およびコメントを参照してください.)
自分が混同したくないクラスについてはkeepコマンドを使用して保持できます.
プロジェクトで使用されるproguard_common.cfg
具体的なコマンドはProguardの公式サイトでご覧いただけますhttp://proguard.sourceforge.net/manual/introduction.html
AndroidにはProguardが統合されており、プロファイルでproguardを有効にするだけで済みます.
# 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=proguard_common.cfg
#proguard.config=proguard.cfg
# Project target.
target=android-15
androidデフォルト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 * extends android.app.backup.BackupAgentHelper
-keep public class * extends android.preference.Preference
-keep public class com.android.vending.licensing.ILicensingService
-keepclasseswithmembernames class * {
native <methods>;
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}
-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変数名およびクラス名をすべて保持し、すべてのクラスの一部は固定パラメータフォーマットが設定されたコンストラクション関数、列挙などである.(詳細は
自分が混同したくないクラスについてはkeepコマンドを使用して保持できます.
プロジェクトで使用されるproguard_common.cfg
# 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 *;
#}
-dontshrink
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontpreverify
-verbose
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
-libraryjars libs/map.jar
-libraryjars libs/core.jar
-libraryjars libs/geocoder_location.jar
-libraryjars libs/locSDK_3.3.jar
-libraryjars libs/umeng_sdk.jar
-libraryjars libs/libammsdk.jar
-libraryjars libs/android-support-v4.jar
-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.BackupAgentHelper
-keep public class * extends android.preference.Preference
-keep public class com.android.vending.licensing.ILicensingService
-keep public class * extends android.view.View
-keep public class * extends android.app.Application
-keep class com.yulore.yellowpage.view.** { *; }
-keep class com.yulore.yellowpage.entity.** { *; }
-keepclasseswithmembers class * {
native <methods>;
}
-keepclasseswithmembers class * {
public static <methods>;
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
}
-keepclasseswithmembers 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 *;
}
-dontwarn com.mapabc.mapapi.route.**
-keep class com.mapabc.mapapi.map.** { *; }
-keep class com.mapabc.mapapi.route.** { *; }
# -dontwarn com.baidu.location.**
-keep class com.baidu.location.** { *; }
# -dontwarn com.tencent.mm.**
-keep class com.tencent.mm.** { *; }
-dontwarn android.support.v4.**
-keep class android.support.v4.** { *; }
-keep class android.support.v4.app.** { *; }
-keep class android.support.v4.view.** { *; }
-keep public class * extends android.support.v4.**
-keepclassmembers class * {
public <init>(org.json.JSONObject);
}
-keep public class com.yulore.yellowpage.R$*{
public static final int *;
}
-keep class com.alibaba.fastjson.** { *; }
-keep public class com.yulore.yellowpage.download.DownloadManager
-keep public class com.yulore.yellowpage.download.Downloads
-keep public class com.yulore.yellowpage.download.Constants
-keep class com.tencent.mm.sdk.openapi.WXMediaMessage {*;}
-keep class com.tencent.mm.sdk.openapi.** implements com.tencent.mm.sdk.openapi.WXMediaMessage$IMediaObject {*;}
具体的なコマンドはProguardの公式サイトでご覧いただけますhttp://proguard.sourceforge.net/manual/introduction.html