19 lines
554 B
Prolog
19 lines
554 B
Prolog
# Add project specific ProGuard rules here.
|
|
# You can control the set of applied configuration files using the
|
|
# proguardFiles setting in build.gradle.
|
|
#
|
|
# For more details, see
|
|
# http://developer.android.com/guide/developing/tools/proguard.html
|
|
|
|
# Keep Retrofit and Gson
|
|
-keepattributes Signature
|
|
-keepattributes *Annotation*
|
|
-keep class com.google.gson.** { *; }
|
|
-keep class com.squareup.retrofit2.** { *; }
|
|
|
|
# Keep Room Database
|
|
-keep class * extends androidx.room.RoomDatabase
|
|
-keep @androidx.room.Entity class *
|
|
-dontwarn androidx.room.paging.**
|
|
|