官方提供的混淆keep是:
-dontwarn com.iflytek.speek.**
-keep class com.iflytek.speek.** {*;}
-keepattributes Signature
而实际上是必须保持iflytek目录下的所有类,如:
-dontwarn com.iflytek.speek.**
-keep class com.iflytek.speek.** {*;}
-keepattributes Signature
完美解决!!
官方提供的混淆keep是:
-dontwarn com.iflytek.speek.**
-keep class com.iflytek.speek.** {*;}
-keepattributes Signature
而实际上是必须保持iflytek目录下的所有类,如:
-dontwarn com.iflytek.speek.**
-keep class com.iflytek.speek.** {*;}
-keepattributes Signature
完美解决!!