2017-03-17 22:19:04 +00:00
|
|
|
# Add project specific ProGuard rules here.
|
|
|
|
# By default, the flags in this file are appended to flags specified
|
|
|
|
# in /opt/android-sdk/tools/proguard/proguard-android.txt
|
|
|
|
# You can edit the include path and order by changing the proguardFiles
|
|
|
|
# directive in build.gradle.
|
|
|
|
#
|
|
|
|
# For more details, see
|
|
|
|
# http://developer.android.com/guide/developing/tools/proguard.html
|
|
|
|
|
|
|
|
# Add any project specific keep options here:
|
|
|
|
|
|
|
|
# If your project uses WebView with JS, uncomment the following
|
|
|
|
# and specify the fully qualified class name to the JavaScript interface
|
|
|
|
# class:
|
|
|
|
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
|
|
|
# public *;
|
|
|
|
#}
|
|
|
|
# Platform used when running on Java 8 VMs. Will not be used at runtime.
|
|
|
|
-dontwarn retrofit2.Platform$Java8
|
|
|
|
# Retain generic type information for use by reflection by converters and adapters.
|
|
|
|
-keepattributes Signature
|
|
|
|
# Retain declared checked exceptions for use by a Proxy instance.
|
2017-04-05 22:35:23 +00:00
|
|
|
-keepattributes Exceptions
|
|
|
|
-dontwarn javax.annotation.**
|
|
|
|
-dontwarn sun.misc.Unsafe
|
2017-04-06 16:59:59 +00:00
|
|
|
-dontwarn okio.**
|
|
|
|
-keep class de.nicidienase.chaosflix.entities.** { *; }
|
|
|
|
#retrofit
|
|
|
|
-dontwarn retrofit2.**
|
|
|
|
-keep class retrofit2.** { *; }
|
|
|
|
-keepattributes *Annotation*,Signature, Exceptions
|
|
|
|
|
|
|
|
-keepclasseswithmembers class * {
|
|
|
|
@retrofit2.http.* <methods>;
|
|
|
|
}
|
|
|
|
#endRetrofit
|