- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我试图使用混淆器混淆我的代码。构建发布 apk 时,它会生成 apk,但代码不会被混淆。请检查我的代码并提供解决方案。
构建.gradle
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
useLibrary 'org.apache.http.legacy'
packagingOptions {
exclude 'LICENSE.txt'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/LICENSE.uas.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/notice.txt'
exclude 'META-INF/ASL2.0'
}
defaultConfig {
applicationId "com.infolabs.tv"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile files('libs/ez_cast_sdk_v_2.1.109.jar')
compile files('libs/gson-2.4.jar')
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.github.d-max:spots-dialog:0.4@aar'
compile 'com.jakewharton:butterknife:6.1.0'
compile 'com.android.support:design:23.3.0'
compile files('libs/Parse-1.8.0.jar')
compile 'com.github.satyan:sugar:1.4'
compile 'de.greenrobot:eventbus:2.4.0'
compile('com.crashlytics.sdk.android:crashlytics:2.5.7@aar') {
transitive = true;
}
}
这是我的 proguard-rules.pro 文件
-optimizationpasses 5
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-dontskipnonpubliclibraryclassmembers
-dontpreverify
-verbose
-dump class_files.txt
-printseeds seeds.txt
-printusage unused.txt
-printmapping mapping.txt
-printmapping out.map
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
-allowaccessmodification
-keepattributes *Annotation*,Signature,InnerClasses
-renamesourcefileattribute SourceFile
-keepattributes SourceFile,LineNumberTable
-keepattributes InnerClasses
-dontoptimize
-repackageclasses ''
-dontwarn android.support.**
-dontwarn android.support.design.**
-dontwarn butterknife.internal.ButterKnifeProcessor
-dontwarn com.parse.**
-dontwarn org.apache.harmony.awt.**
-dontwarn com.sun.mail.imap.protocol.**
-dontwarn com.aem.api.AEMPrinter
-dontwarn com.usb.api.USBPrinter
-dontwarn com.bewo.mach.tools.MACHOPTFPHelper
-dontwarn com.bewo.mach.tools.MACHDPHelper
-dontwarn javax.activation.CommandInfo
-dontwarn com.google.zxing.**
-dontwarn com.actionsmicro.androidkit.ezcast.imp.googlecast.**
-dontwarn org.apache.http.entity.mime.**
-dontwarn com.thetransactioncompany.jsonrpc2.server.MessageContext
-dontwarn com.actionsmicro.d.a.a
-dontwarn com.google.common.**
-dontwarn com.crashlytics.**
-keep public class * extends java.lang.Exception
# Gson specific classes
-keep class sun.misc.Unsafe { *; }
# Library projects.
# Priority jobqueue
#-keep class com.path.android.jobqueue.** { *; }
#-keep interface com.path.android.jobqueue.** { *; }
# Crashlytics Library
-keep class com.crashlytics.** { *; }
-keep interface com.crashlytics.** { *; }
# EventBus Library
-keep class de.greenrobot.event.EventBus.** { *; }
-keep interface de.greenrobot.event.EventBus.** { *; }
# Sugar ORM Library
-keep class com.orm.** { *; }
-keep interface com.orm.** { *; }
# Butterknife library
-keep class butterknife.** { *; }
-keep interface butterknife.** { *; }
-keep class **$$ViewInjector { *; }
# Parse Library
-keep class com.parse.** { *; }
-keep interface com.parse.** { *; }
# Bolts Library
-keep class bolts.** { *; }
-keep interface bolts.** { *; }
# sports dialoge Library
-keep class dmax.dialog.** { *; }
-keep interface dmax.dialog.** { *; }
# MACH Library
#-keep class com.bewo.mach.** { *; }
#-keep interface com.bewo.mach.** { *; }
# SlickUSB2SerialLib Library
#-keep class slickdevlabs.apps.usb2seriallib.** { *; }
#-keep interface slickdevlabs.apps.usb2seriallib.** { *; }
# SwipeMenu Listview Library
#-keep class com.baoyz.swipemenulistview.** { *; }
#-keep interface com.baoyz.swipemenulistview.** { *; }
# Background mail library
#-keep class com.kristijandraca.backgroundmaillibrary.** { *; }
#-keep interface com.kristijandraca.backgroundmaillibrary.** { *; }
# Zxing Library
#-keep class com.google.zxing.** { *; }
#-keep interface com.google.zxing.** { *; }
# ez_cast_sdk
-keep class a.a.a.** { *; }
-keep interface a.a.a.** { *; }
# ez_cast_sdk
-keep class c.a.a.** { *; }
-keep interface c.a.a.** { *; }
-keep class com.google.gson.** { *; }
-keep interface com.google.gson.** { *; }
-keep class com.** { *; }
-keep interface com.** { *; }
# The official support library.
-keep class android.support.v4.app.** { *; }
-keep interface android.support.v4.app.** { *; }
-keep class android.support.v7.appcompat.** { *; }
-keep interface android.support.v7.appcompat.** { *; }
# The official design support library.
-keep class android.support.design.** { *; }
-keep interface android.support.design.** { *; }
-keep public class android.support.design.R$* { *; }
# Keep fragments
-keep public class * extends android.support.v4.app.Fragment
-keep public class * extends android.app.Fragment
-keep public class * extends android.app.Activity
-keep public class * extends android.support.v7.app.ActionBarActivity
-keep public class * extends android.support.v7.app.AppCompatActivity
-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 class com.infolabs.tv.databases.** { *; }
-dontskipnonpubliclibraryclassmembers
-keep public class * {
public protected *;
}
-keep public class * extends android.view.View {
public <init>(android.content.Context);
public <init>(android.content.Context, android.util.AttributeSet);
public <init>(android.content.Context, android.util.AttributeSet, int);
public void set*(...);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet);
}
-keepclasseswithmembers class * {
public <init>(android.content.Context, android.util.AttributeSet, int);
}
-keepclasseswithmembernames class * {
@butterknife.* <fields>;
}
-keepclasseswithmembernames class * {
@butterknife.* <methods>;
}
-keepclassmembers class * implements android.os.Parcelable {
static android.os.Parcelable$Creator CREATOR;
}
-keepclassmembers class **.R$* {
public static <fields>;
}
# Serializables
-keepnames class * implements java.io.Serializable
-keepclassmembers class * implements java.io.Serializable {
static final long serialVersionUID;
private static final java.io.ObjectStreamField[] serialPersistentFields;
!static !transient <fields>;
!private <fields>;
!private <methods>;
private void writeObject(java.io.ObjectOutputStream);
private void readObject(java.io.ObjectInputStream);
java.lang.Object writeReplace();
java.lang.Object readResolve();
}
# Native Methods
-keepclasseswithmembernames class * {
native <methods>;
}
# Android Support Library
-keep class android.** {*;}
# Button methods
-keepclassmembers class * {
public void *ButtonClicked(android.view.View);
}
# Reflection
-keepclassmembers class com.elsinga.sample.proguard.SensorDescriptionFragment {
public void updateFields(com.elsinga.sample.proguard.SensorData);
}
-keep class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator *;
}
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
# Remove Logging
-assumenosideeffects class android.util.Log {
public static *** e(...);
public static *** w(...);
public static *** wtf(...);
public static *** d(...);
public static *** v(...);
}
最佳答案
您的混淆器配置中有各种过于通用的规则,即保留几乎所有内容。
此规则保留每个公共(public)类中的每个公共(public)或 protected 字段/方法(这样的规则仅对库有用):
-keep public class * {
public protected *;
}
此规则保留包 com 及其子包中的每个类/接口(interface):
-keep class com.** { *; }
-keep interface com.** { *; }
假设您的应用程序包也以 com.
开头,这将防止您的应用程序中的任何内容被混淆。
关于android - Proguard 不会混淆 Android 中的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37970358/
我尝试理解[c代码 -> 汇编]代码 void node::Check( data & _data1, vector& _data2) { -> push ebp -> mov ebp,esp ->
我需要在当前表单(代码)的上下文中运行文本文件中的代码。其中一项要求是让代码创建新控件并将其添加到当前窗体。 例如,在Form1.cs中: using System.Windows.Forms; ..
我有此 C++ 代码并将其转换为 C# (.net Framework 4) 代码。有没有人给我一些关于 malloc、free 和 sprintf 方法的提示? int monate = ee; d
我的网络服务器代码有问题 #include #include #include #include #include #include #include int
给定以下 html 代码,将列表中的第三个元素(即“美丽”一词)以斜体显示的 CSS 代码是什么?当然,我可以给这个元素一个 id 或一个 class,但 html 代码必须保持不变。谢谢
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
我试图制作一个宏来避免重复代码和注释。 我试过这个: #define GrowOnPage(any Page, any Component) Component.Width := Page.Surfa
我正在尝试将我的旧 C++ 代码“翻译”成头条新闻所暗示的 C# 代码。问题是我是 C# 中的新手,并不是所有的东西都像 C++ 中那样。在 C++ 中这些解决方案运行良好,但在 C# 中只是不能。我
在 Windows 10 上工作,R 语言的格式化程序似乎没有在 Visual Studio Code 中完成它的工作。我试过R support for Visual Studio Code和 R-T
我正在处理一些报告(计数),我必须获取不同参数的计数。非常简单但乏味。 一个参数的示例查询: qCountsEmployee = ( "select count(*) from %s wher
最近几天我尝试从 d00m 调试网络错误。我开始用尽想法/线索,我希望其他 SO 用户拥有可能有用的宝贵经验。我希望能够提供所有相关信息,但我个人无法控制服务器环境。 整个事情始于用户注意到我们应用程
我有一个 app.js 文件,其中包含如下 dojo amd 模式代码: require(["dojo/dom", ..], function(dom){ dom.byId('someId').i
我对“-gencode”语句中的“code=sm_X”选项有点困惑。 一个例子:NVCC 编译器选项有什么作用 -gencode arch=compute_13,code=sm_13 嵌入库中? 只有
我为我的表格使用 X-editable 框架。 但是我有一些问题。 $(document).ready(function() { $('.access').editable({
我一直在通过本教程学习 flask/python http://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-wo
我想将 Vim 和 EMACS 用于 CNC、G 代码和 M 代码。 Vim 或 EMACS 是否有任何语法或模式来处理这种类型的代码? 最佳答案 一些快速搜索使我找到了 this vim 和 thi
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve this
这个问题在这里已经有了答案: Enabling markdown highlighting in Vim (5 个回答) 6年前关闭。 当我在 Vim 中编辑包含 Markdown 代码的 READM
我正在 Swift3 iOS 中开发视频应用程序。基本上我必须将视频 Assets 和音频与淡入淡出效果合并为一个并将其保存到 iPhone 画廊。为此,我使用以下方法: private func d
pipeline { agent any stages { stage('Build') { steps { e
我是一名优秀的程序员,十分优秀!