4f5d0e60b4
When an app's LOCAL_SDK_VERSION is lower than the support library's
LOCAL_SDK_VERSION, we artifically raises the "SDK version" "linked"
by ProGuard, to
- suppress ProGuard warnings of referencing symbols unknown to the
lower SDK version.
- prevent ProGuard stripping subclass in the support library that
extends class added in the higher SDK version.
This allows us to remove the dangerous ProGuard flag
"-dontwarn android.support.**".
Notes:
- We don't raise the app's LOCAL_SDK_VERSION, so that the app's own
code is still unable to use the higher SDK version.
- For platform build, we can't just raise to the "current" SDK,
because would break apps that use APIs removed from the current SDK.
We raise it to framework.jar instead, which contains the most complete
symbol set.
Bug: 20658265
Change-Id: I90099073457a65cb8031fbaec6b396d68ce614a7
(cherry picked from commit 8e8d1e7aba
)
69 lines
2.8 KiB
Text
69 lines
2.8 KiB
Text
# see http://sourceforge.net/tracker/?func=detail&aid=2787465&group_id=54750&atid=474707
|
|
-optimizations !code/simplification/arithmetic
|
|
-optimizations !code/simplification/cast
|
|
|
|
# To prevent name conflict in incremental obfuscation.
|
|
-useuniqueclassmembernames
|
|
|
|
# Some classes in the libraries extend package private classes to chare common functionality
|
|
# that isn't explicitly part of the API
|
|
-dontskipnonpubliclibraryclasses -dontskipnonpubliclibraryclassmembers
|
|
|
|
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
|
|
-keepclassmembers enum * {
|
|
public static **[] values();
|
|
public static ** valueOf(java.lang.String);
|
|
}
|
|
|
|
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
|
|
-keepclasseswithmembernames class * {
|
|
native <methods>;
|
|
}
|
|
|
|
# class$ methods are inserted by some compilers to implement .class construct,
|
|
# see http://proguard.sourceforge.net/manual/examples.html#library
|
|
-keepclassmembernames class * {
|
|
java.lang.Class class$(java.lang.String);
|
|
java.lang.Class class$(java.lang.String, boolean);
|
|
}
|
|
|
|
# Keep serializable classes and necessary members for serializable classes
|
|
# Copied from the ProGuard manual at http://proguard.sourceforge.net.
|
|
-keepnames class * implements java.io.Serializable
|
|
-keepclassmembers class * implements java.io.Serializable {
|
|
static final long serialVersionUID;
|
|
private static final java.io.ObjectStreamField[] serialPersistentFields;
|
|
!static !transient <fields>;
|
|
private void writeObject(java.io.ObjectOutputStream);
|
|
private void readObject(java.io.ObjectInputStream);
|
|
java.lang.Object writeReplace();
|
|
java.lang.Object readResolve();
|
|
}
|
|
|
|
# Please specify classes to be kept explicitly in your package's configuration.
|
|
# -keep class * extends android.app.Activity
|
|
# -keep class * extends android.view.View
|
|
# -keep class * extends android.app.Service
|
|
# -keep class * extends android.content.BroadcastReceiver
|
|
# -keep class * extends android.content.ContentProvider
|
|
# -keep class * extends android.preference.Preference
|
|
# -keep class * extends android.app.BackupAgent
|
|
|
|
# Parcelable CREATORs must be kept for Parcelable functionality
|
|
-keep class * implements android.os.Parcelable {
|
|
public static final ** CREATOR;
|
|
}
|
|
|
|
# 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.
|
|
# See proguard-android.txt in the SDK package.
|
|
#
|
|
# DO NOT USE THIS: We figured it's dangerous to blindly ignore all support library warnings.
|
|
# ProGuard may strip members of subclass of unknown super classes, in case an app is linking against
|
|
# LOCAL_SDK_VERSION lower than the support library's LOCAL_SDK_VERSION.
|
|
# See bug/20658265.
|
|
# -dontwarn android.support.**
|
|
|
|
# Less spammy.
|
|
-dontnote
|