-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathproguard.pro
More file actions
216 lines (178 loc) · 7.96 KB
/
proguard.pro
File metadata and controls
216 lines (178 loc) · 7.96 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
#these are the rules that mParticle used when compiling the core library
# This is a configuration file for ProGuard.
# http://proguard.sourceforge.net/index.html#manual/usage.html
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-verbose
# Optimization is turned off by default. Dex does not like code run
# through the ProGuard optimize and preverify steps (and performs some
# of these optimizations on its own).
-dontoptimize
#-dontpreverify
# Note that if you want to enable optimization, you cannot just
# include optimization flags in your own project configuration file;
# instead you will need to point to the
# "proguard-android-optimize.txt" file instead of this one from your
# project.properties file.
-keepattributes *Annotation*
-keep public class com.google.vending.licensing.ILicensingService
-keep public class com.android.vending.licensing.ILicensingService
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
-keepclasseswithmembernames class * {
native <methods>;
}
# keep setters in Views so that animations can still work.
# see http://proguard.sourceforge.net/manual/examples.html#beans
-keepclassmembers public class * extends android.view.View {
void set*(***);
*** get*();
}
# We want to keep methods in Activity that could be used in the XML attribute onClick
-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keepclassmembers class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator CREATOR;
}
-keepclassmembers class **.R$* {
public static <fields>;
}
# The support library contains references to newer platform versions.
# Don't warn about those in case this app is linking against an older
# platform version. We know about them, and they are safe.
-dontwarn android.support.**
# Understand the @Keep support annotation.
-keep class android.support.annotation.Keep
-keep @android.support.annotation.Keep class * {*;}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <methods>;
}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <fields>;
}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <init>(...);
}
-optimizations !code/allocation/variable
-keepparameternames
-renamesourcefileattribute SourceFile
-keepattributes Exceptions,InnerClasses,Signature,Deprecated,SourceFile,LineNumberTable,*Annotation*,EnclosingMethod
-repackageclasses com.mparticle
-keep class com.mparticle.MPEvent$* { *; }
-keep class com.mparticle.MParticle { *; }
-keep class com.mparticle.MParticle$EventType { *; }
-keep class com.mparticle.MParticle$InstallType { *; }
-keep class com.mparticle.MParticle$IdentityType { *; }
-keep class com.mparticle.MParticle$Environment { *; }
-keep class com.mparticle.MParticle$LogLevel { *; }
-keep class com.mparticle.MParticle$Builder { *; }
-keep class com.mparticle.MParticle$ServiceProviders { *; }
-keep class com.mparticle.MParticle$UserAttributes { *; }
-keep class com.mparticle.MParticle$ResetListener { *; }
-keep class com.mparticle.MParticle$OperatingSystem { *; }
-keep class com.mparticle.uploadbatching.UploadBatchReceiver
-keep class com.mparticle.Session { *; }
-keep class com.mparticle.MPEvent { *; }
-keep class com.mparticle.BuildConfig { *; }
-keep class com.mparticle.MPReceiver { *; }
-keep class com.mparticle.MPService { *; }
-keep class com.mparticle.MParticleOptions { *;}
-keep class com.mparticle.MParticleOptions$* { *; }
-keep class com.mparticle.AttributionError { *; }
-keep class com.mparticle.AttributionListener { *; }
-keep class com.mparticle.AttributionResult { *; }
-keep class com.mparticle.MParticleTask { *; }
-keep class com.mparticle.UserAttributeListener { *; }
-keep class com.mparticle.TypedUserAttributeListener { *; }
-keep class com.mparticle.UserAttributeListenerType { *; }
-keep class com.mparticle.BaseEvent { *; }
-keep class com.mparticle.BaseEvent$Type { *; }
-keep class com.mparticle.BaseEvent$MessageType { *; }
-keep class com.mparticle.Configuration { *; }
-keep class com.mparticle.consent.ConsentState { *; }
-keep class com.mparticle.consent.ConsentState$Builder { *; }
-keep class com.mparticle.consent.GDPRConsent { *; }
-keep class com.mparticle.consent.GDPRConsent$Builder { *; }
-keep class com.mparticle.consent.CCPAConsent { *; }
-keep class com.mparticle.consent.CCPAConsent$Builder {*;}
-keep class com.mparticle.internal.SideloadedKit { *; }
-keep class com.mparticle.internal.KitManager { *; }
-keep class com.mparticle.internal.KitManager$* { *; }
-keep class com.mparticle.internal.CoreCallbacks { *; }
-keep class com.mparticle.internal.CoreCallbacks$KitListener { *; }
-keep class com.mparticle.internal.ReportingManager { *; }
-keep class com.mparticle.internal.JsonReportingMessage { *; }
-keep class com.mparticle.internal.MPUtility { *; }
-keep class com.mparticle.internal.MPUtility$* { *; }
-keep class com.mparticle.UserAttributeListener { *; }
-keep class com.mparticle.internal.PushRegistrationHelper { *; }
-keep class com.mparticle.internal.PushRegistrationHelper$PushRegistration { *; }
-keep class com.mparticle.internal.MParticleJSInterface { *; }
-keep class com.mparticle.internal.Logger { *; }
-keep class com.mparticle.internal.Logger$* { *; }
-keep class com.mparticle.internal.KitsLoadedCallback { *; }
-keep class com.mparticle.internal.listeners.InternalListenerManager { *; }
-keep class com.mparticle.identity.IdentityApi { *; }
-keep class com.mparticle.identity.IdentityApiRequest { *; }
-keep class com.mparticle.identity.IdentityApiRequest$* { *; }
-keep class com.mparticle.identity.IdentityApiResult { *; }
-keep class com.mparticle.identity.MParticleUser { *; }
-keep class com.mparticle.identity.IdentityStateListener { *; }
-keep class com.mparticle.identity.UserAliasHandler { *; }
-keep class com.mparticle.identity.IdentityHttpResponse { *; }
-keep class com.mparticle.identity.IdentityHttpResponse$Error { *; }
-keep class com.mparticle.identity.TaskSuccessListener { *; }
-keep class com.mparticle.identity.TaskFailureListener { *; }
-keep class com.mparticle.identity.BaseIdentityTask { *; }
-keep class com.mparticle.identity.AliasRequest { *; }
-keep class com.mparticle.identity.AliasRequest$Builder { *; }
-keep class com.mparticle.identity.AliasResponse { *; }
-keep class com.mparticle.messaging.InstanceIdService { *; }
-keep class com.mparticle.networking.NetworkOptions { *;}
-keep class com.mparticle.networking.NetworkOptions$Builder { *; }
-keep class com.mparticle.networking.DomainMapping { *; }
-keep class com.mparticle.networking.DomainMapping$Builder { *; }
-keep class com.mparticle.networking.Certificate { *; }
-keep class com.mparticle.SdkListener { *; }
-keep class com.mparticle.SdkListener$* { *; }
-keep class com.mparticle.internal.listeners.GraphListener { *; }
-keep class com.mparticle.internal.InternalSession { *; }
-keep public class com.mparticle.messaging.* {
*;
}
-keep public class com.mparticle.segmentation.* {
*;
}
-keep public class com.mparticle.media.* {
*;
}
-keep public class com.mparticle.commerce.* {
*;
}
-keep public class com.mparticle.kits.* {
*;
}
-keepclassmembernames class * {
java.lang.Class class$(java.lang.String);
java.lang.Class class$(java.lang.String, boolean);
}
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keepclassmembers class * implements java.io.Serializable {
static final long serialVersionUID;
private static final java.io.ObjectStreamField[] serialPersistentFields;
private void writeObject(java.io.ObjectOutputStream);
private void readObject(java.io.ObjectInputStream);
java.lang.Object writeReplace();
java.lang.Object readResolve();
}
-keepnames class * implements android.os.Parcelable {
public static final ** CREATOR;
}