OLD | NEW |
(Empty) | |
| 1 # ProGuard Configuration file |
| 2 # |
| 3 # See http://proguard.sourceforge.net/index.html#manual/usage.html |
| 4 |
| 5 # Needed by google-http-client to keep generic types and @Key annotations access
ed via reflection |
| 6 |
| 7 -keepattributes Signature,RuntimeVisibleAnnotations,AnnotationDefault |
| 8 |
| 9 -keepclassmembers class * { |
| 10 @com.google.api.client.util.Key <fields>; |
| 11 } |
| 12 |
| 13 # Needed by Guava |
| 14 # See https://groups.google.com/forum/#!topic/guava-discuss/YCZzeCiIVoI |
| 15 |
| 16 -dontwarn sun.misc.Unsafe |
| 17 -dontwarn com.google.common.collect.MinMaxPriorityQueue |
| 18 |
| 19 # Needed by google-http-client-android when linking against an older platform ve
rsion |
| 20 |
| 21 -dontwarn com.google.api.client.extensions.android.** |
| 22 -dontwarn com.google.api.client.googleapis.extensions.android.** |
OLD | NEW |