META-INF.proguard.tmdb-java.pro Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tmdb-java Show documentation
Show all versions of tmdb-java Show documentation
tmdb-java is a retrofit2 based wrapper around the themoviedb.org API v3.
The newest version!
# Keep the entity class names if they are used.
-keepnames class com.uwetrottmann.tmdb2.entities.**
# Keep the entity members as they are if the class is kept.
# Note: this prevents R8 from removing fields only used in constructors.
-keepclassmembers class com.uwetrottmann.tmdb2.entities.** {
;
(...);
}
# Keep all enum classes as is, above rules make no reasonable difference.
-keep class com.uwetrottmann.tmdb2.enumerations.** { *; }