File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
test-apps/functions-test-app Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 1
1
-dontwarn okio.**
2
+
3
+ # These rules come from:
4
+ # https://github.com/square/okhttp/blob/master/okhttp/src/main/resources/META-INF/proguard/okhttp3.pro
5
+
6
+ # JSR 305 annotations are for embedding nullability information.
7
+ -dontwarn javax.annotation.**
8
+
9
+ # A resource is loaded with a relative path so the package of this class must be preserved.
10
+ -keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase
11
+
12
+ # Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
13
+ -dontwarn org.codehaus.mojo.animal_sniffer.*
14
+
15
+ # OkHttp platform used only on JVM and when Conscrypt dependency is available.
16
+ -dontwarn okhttp3.internal.platform.ConscryptPlatform
17
+
Original file line number Diff line number Diff line change 2
2
3
3
-keep class android.support.test.espresso.IdlingResource { *; }
4
4
-keep class android.support.test.espresso.IdlingRegistry { *; }
5
+
You can’t perform that action at this time.
0 commit comments