📜  proguards 的改造问题 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:31.887000             🧑  作者: Mango

代码示例1
#Retrofit2
-keep class com.uwbeinternational.weatherapp.** { *; }

-keep class com.squareup.okhttp.** { *; }
-keep interface com.squareup.okhttp.** { *; }

-dontwarn com.squareup.okhttp.**
-dontwarn okio.**

-keepattributes Signature
-keepattributes *Annotation*
-keep class okhttp3.** { *; }
-keep interface okhttp3.** { *; }

-dontwarn okhttp3.**