File tree 3 files changed +24
-23
lines changed
3 files changed +24
-23
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ android {
33
33
targetSdkVersion rootProject. ext. compileSdkVersion
34
34
versionCode VERSION_CODE . toInteger()
35
35
versionName project. VERSION_NAME
36
-
36
+ consumerProguardFiles ' consumer-rules.pro '
37
37
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
38
38
}
39
39
Original file line number Diff line number Diff line change
1
+ ## Affirm SDK
2
+ -keep class com.affirm.android.** { *; }
3
+
4
+ # --- AutoValue ---
5
+ -dontwarn com.google.auto.value.**
6
+ -dontwarn com.ryanharter.auto.value.**
7
+
8
+ ## --- OkHttp ---
9
+ # JSR 305 annotations are for embedding nullability information.
10
+ -dontwarn javax.annotation.**
11
+
12
+ # A resource is loaded with a relative path so the package of this class must be preserved.
13
+ -keeppackagenames okhttp3.internal.publicsuffix.*
14
+ -adaptresourcefilenames okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz
15
+
16
+ # Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
17
+ -dontwarn org.codehaus.mojo.animal_sniffer.*
18
+
19
+ # OkHttp platform used only on JVM and when Conscrypt and other security providers are available.
20
+ -dontwarn okhttp3.internal.platform.**
21
+ -dontwarn org.conscrypt.**
22
+ -dontwarn org.bouncycastle.**
23
+ -dontwarn org.openjsse.**
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments