0

如何避免类名和 Logger 混淆(Dexguard)

Dexguard:避免来自 Android Release build Apk 的类名和 Logger 混淆

给我推荐一个...

4

1 回答 1

0

您可以使用选项来阻止 ProGuard 和 DexGuard 混淆类名-keep,例如

-keep class com.example.MyClass

如果这是出现在配置文件中的日志记录类的名称,这可能确实很有用。或者,您可以让 ProGuard 或 DexGuard 混淆类名,但相应地更新配置文件,例如:

-keep,allowobfuscation class com.example.MyLogger
-adaptresourcefilecontents res/raw/myloggingconfiguration.txt
于 2016-12-29T23:00:47.747 回答