24 lines
482 B
Prolog
24 lines
482 B
Prolog
# Jordan Bot ProGuard Rules
|
|
|
|
# Keep service classes
|
|
-keep class com.jordanbot.autoride.service.** { *; }
|
|
|
|
# Keep model classes for Gson
|
|
-keep class com.jordanbot.autoride.model.** { *; }
|
|
|
|
# Retrofit
|
|
-keepattributes Signature
|
|
-keepattributes *Annotation*
|
|
-keep class retrofit2.** { *; }
|
|
-keepclasseswithmembers class * {
|
|
@retrofit2.http.* <methods>;
|
|
}
|
|
|
|
# OkHttp
|
|
-dontwarn okhttp3.**
|
|
-dontwarn okio.**
|
|
|
|
# Gson
|
|
-keep class com.google.gson.** { *; }
|
|
-keepattributes EnclosingMethod
|