This commit is contained in:
Hamza-Ayed
2026-05-14 18:24:32 +03:00
commit 8272065938
646 changed files with 50360 additions and 0 deletions

23
app/proguard-rules.pro vendored Normal file
View File

@@ -0,0 +1,23 @@
# 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