-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
代码混淆存在重大Bug #79
Comments
bro 怎么修改的 |
源码下载下来,自己改就好了 |
bro clone 源码改可以 怎么运行报错嘞 |
不必如此麻烦,gradle依赖过pine项目之后,去gradle缓存目录(比如 |
三克油 bro |
库里面的这个混淆配置
-keep class * {
native ;
}
会导致引用这个库的项目全部不混淆。
应该改成
-keepclassmembers * {
native ;
}
The text was updated successfully, but these errors were encountered: