-
Notifications
You must be signed in to change notification settings - Fork 0
/
proguard-rules.txt
41 lines (36 loc) · 1.07 KB
/
proguard-rules.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
-dontoptimize
-dontobfuscate
-dontpreverify
-dontwarn scala.**
-ignorewarnings
# temporary workaround; see Scala issue SI-5397
-keep class scala.collection.SeqLike {
public protected *;
}
-keep class com.artkostm.flymer.service.PipelineService
-keep class io.taig.communicator.Interceptor$* {
*;
}
-keep class io.taig.communicator.body.Response
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
# this can be omitted if current Android Build target is android-16
-dontwarn org.scaloid.**
-dontwarn java.nio.file.*
-dontwarn android.support.customtabs.**
-dontwarn android.net.http.**
-dontwarn org.apache.http.**
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
-dontwarn android.support.v4.**
-dontwarn android.support.v7.**
-dontwarn com.google.android.gms.internal.**
-dontwarn spray.json.**
-dontnote okhttp3.internal.**
-dontnote monix.execution.internals.**
-dontwarn io.circe.generic.util.macros.**
-dontwarn monix.execution.internals.**
-dontwarn okio.**
-dontwarn org.jctools.**
-dontwarn org.slf4j.**