# Add two of the following rules to your Proguard configuration file.
# Alternatively, you can annotate classes and class members with @android.support.annotation.Keep
# keep the class and specified members from being removed or renamed 保持类和指定成员不被删除或重命名
-keep class cn.qssq666.robot.selfplugin.IPluginHolder { *; }
# keep the specified class members from being removed or renamed
# only if the class is preserved 保持类和指定成员不被删除或重命名 只有这个被保护??
-keepclassmembers class cn.qssq666.robot.selfplugin.IPluginHolder { *; }
# keep the class and specified members from being renamed only 仅保持当该类不被重命名,
-keepnames class cn.qssq666.robot.selfplugin.IPluginHolder { *; }
# keep the specified class members from being renamed only 只保持指定的类成员不再被重命名
-keepclassmembernames class
cn.qssq666.robot.selfplugin.IPluginHolder { *; }
android studio自动生成的混淆笔记
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 我说的高端,自然是没有任何错误,而且不管clear, build ,clear invalidate都没有任何效果...
- 项目源码 https://github.com/boredream/AndroidDatabaseGenerato...
- 项目源码 https://github.com/boredream/AndroidDatabaseGenerato...
- 将module生成jar,其内部必须只能是java代码。如果还有resource文件,那就得打aar文件了。 在你...
- 相信有的小伙伴已经成功安装了CocoaPods,也可以正常使用,然而会发现执行`pod search`来搜索类库信...