24 lines
734 B
Plaintext
24 lines
734 B
Plaintext
# ProGuard Configuration file
|
|
#
|
|
# See http://proguard.sourceforge.net/index.html#manual/usage.html
|
|
|
|
# Needed to keep generic types and @Key annotations accessed via reflection
|
|
|
|
-keepattributes Signature,RuntimeVisibleAnnotations,AnnotationDefault
|
|
|
|
-keepclassmembers class * {
|
|
@com.google.api.client.util.Key <fields>;
|
|
}
|
|
|
|
# Needed by google-http-client-android when linking against an older platform version
|
|
|
|
-dontwarn com.google.api.client.extensions.android.**
|
|
|
|
# Needed by google-api-client-android when linking against an older platform version
|
|
|
|
-dontwarn com.google.api.client.googleapis.extensions.android.**
|
|
|
|
# Needed by google-play-services when linking against an older platform version
|
|
|
|
-dontwarn com.google.android.gms.**
|