Android使用proguard保护应用程序

时间:2012-08-30 15:16:30

标签: android proguard

我已经创建了我的应用并遵循了建议here我已经这样做了:

在proguard-project.txt中:

# 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 *;
#}

-optimizationpasses 10
-dontwarn android.support.**
-verbose


-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*

-keep public class ClassOne extends Activity
-keep public class ClassTwo extends ListActivity
-keep public class ClassThree extends ListActivity
-keep public class ClassFour extends ListActivity
-keep public class ClassFive extends ListActivity
-keep public class ClassSix extends ListActivity
-keep public class ClassSeven extends Activity

这些是manifest

上的课程

在project.properties中取消注释该行:

proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

我已导出我的应用并打开使用过的dex2jar和jd-gui以查看是否添加任何成功。

问题是代码几乎和我编码一样,并且很容易理解。

我做错了吗?我可以改进混淆吗?

2 个答案:

答案 0 :(得分:1)

你应该按照

中的方式复制'keep'
-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
-keep public class * extends android.support.v4.app.Fragment
-keep public class * extends android.app.Fragment

而不是替换您自己的实际活动名称

答案 1 :(得分:1)

确定。

我删除了这些行:

-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
-keep public class * extends android.support.v4.app.Fragment
-keep public class * extends android.app.Fragment

现在正如我预期的那样

由于互联网上的所有示例都具有这些线条,因此我很重要。

测试我的应用并按预期工作