-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproguard-rules.txt
More file actions
35 lines (28 loc) · 1.06 KB
/
proguard-rules.txt
File metadata and controls
35 lines (28 loc) · 1.06 KB
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
# Add project specific ProGuard rules here.
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# Optimizely
-keep class com.optimizely.optimizely_flutter_sdk.OptimizelyFlutterSdkPlugin { *; }
-keep class com.optimizely.optimizely_flutter_sdk.** { *; }
-keep class com.optimizely.ab.** { *; }
# Keep Jackson classes for JSON parsing
-keep class com.fasterxml.jackson.** { *; }
-dontwarn com.fasterxml.jackson.**
# Keep Guava classes
-keep class com.google.common.** { *; }
-dontwarn com.google.common.**
-dontwarn com.google.android.play.core.**
# Keep SLF4J and Logback classes
-keep class org.slf4j.** { *; }
-keep class ch.qos.logback.** { *; }
-dontwarn org.slf4j.**
-dontwarn ch.qos.logback.**
# Missing Dependencies (Android doesn't have these)
-dontwarn javax.mail.**
-dontwarn javax.activation.**
-dontwarn javax.servlet.**
##---------------End: proguard configuration ----------