You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
542 B
10 lines
542 B
# Prevent Proguard from inlining methods that are intentionally extracted to ensure locals have a
|
|
# constrained liveness scope by the GC. This is needed to avoid keeping previous request references
|
|
# alive for an indeterminate amount of time. See also https://github.com/google/volley/issues/114
|
|
-keepclassmembers,allowshrinking,allowobfuscation class com.android.volley.NetworkDispatcher {
|
|
void processRequest();
|
|
}
|
|
-keepclassmembers,allowshrinking,allowobfuscation class com.android.volley.CacheDispatcher {
|
|
void processRequest();
|
|
}
|