Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要帮助关闭所有功能并禁用 Proguard 为除一个之外的所有类所做的一切。一个类应该被混淆(包含安全的东西)。有任何想法吗?
-不要收缩
-不要优化
-不要混淆
-keep,allowshrinking,allowoptimization,allowobfuscation class org.mypackage.MyClass
Use this Line into the proguard Enter all package name for disable things of proguard -dontwarn your_package_name.**