Home | History | Annotate | Download | only in volley
      1 # Prevent Proguard from inlining methods that are intentionally extracted to ensure locals have a
      2 # constrained liveness scope by the GC. This is needed to avoid keeping previous request references
      3 # alive for an indeterminate amount of time. See also https://github.com/google/volley/issues/114
      4 -keepclassmembers,allowshrinking,allowobfuscation class com.android.volley.NetworkDispatcher {
      5     void processRequest();
      6 }
      7 -keepclassmembers,allowshrinking,allowobfuscation class com.android.volley.CacheDispatcher {
      8     void processRequest();
      9 }
     10