blob: 4a85db0f8dc90da1f4a1aa5984080679e2aaaffd [file] [log] [blame]
Ying Wang38cdd442013-05-30 10:45:46 -07001# see http://sourceforge.net/tracker/?func=detail&aid=2787465&group_id=54750&atid=474707
2-optimizations !code/simplification/arithmetic
3-optimizations !code/simplification/cast
Ying Wang38cdd442013-05-30 10:45:46 -07004
5# To prevent name conflict in incremental obfuscation.
6-useuniqueclassmembernames
7
8# Some classes in the libraries extend package private classes to chare common functionality
9# that isn't explicitly part of the API
10-dontskipnonpubliclibraryclasses -dontskipnonpubliclibraryclassmembers
11
Ying Wang57453512013-05-17 10:02:00 -070012# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
13-keepclassmembers enum * {
14 public static **[] values();
15 public static ** valueOf(java.lang.String);
16}
17
18# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
19-keepclasseswithmembernames class * {
20 native <methods>;
21}
22
23# class$ methods are inserted by some compilers to implement .class construct,
24# see http://proguard.sourceforge.net/manual/examples.html#library
25-keepclassmembernames class * {
26 java.lang.Class class$(java.lang.String);
27 java.lang.Class class$(java.lang.String, boolean);
28}
29
Ying Wang57453512013-05-17 10:02:00 -070030# Keep serializable classes and necessary members for serializable classes
31# Copied from the ProGuard manual at http://proguard.sourceforge.net.
32-keepnames class * implements java.io.Serializable
33-keepclassmembers class * implements java.io.Serializable {
34 static final long serialVersionUID;
35 private static final java.io.ObjectStreamField[] serialPersistentFields;
36 !static !transient <fields>;
37 private void writeObject(java.io.ObjectOutputStream);
38 private void readObject(java.io.ObjectInputStream);
39 java.lang.Object writeReplace();
40 java.lang.Object readResolve();
41}
42
43# Please specify classes to be kept explicitly in your package's configuration.
44# -keep class * extends android.app.Activity
45# -keep class * extends android.view.View
46# -keep class * extends android.app.Service
47# -keep class * extends android.content.BroadcastReceiver
48# -keep class * extends android.content.ContentProvider
49# -keep class * extends android.preference.Preference
50# -keep class * extends android.app.BackupAgent
51
Scott Kennedy62eb51a2014-04-07 11:25:47 -070052# Parcelable CREATORs must be kept for Parcelable functionality
53-keep class * implements android.os.Parcelable {
54 public static final ** CREATOR;
55}
Ying Wang57453512013-05-17 10:02:00 -070056
57# The support library contains references to newer platform versions.
58# Don't warn about those in case this app is linking against an older
59# platform version. We know about them, and they are safe.
60# See proguard-android.txt in the SDK package.
61-dontwarn android.support.**
Ying Wangf864d502014-06-17 11:53:31 -070062
63# Less spammy.
64-dontnote