summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeith Mok <kmok@cyngn.com>2015-10-23 10:18:14 -0700
committerKeith Mok <kmok@cyngn.com>2015-10-28 08:31:03 -0700
commita596ba355ac561759da4d8987533333cd6c57ca7 (patch)
treebe3117ea3fde88633880ef53a19721efc91cfc4c
parent84ae2f07bb19dbe4d963012ba02f0512442ef922 (diff)
downloadandroid_packages_apps_DeskClock-a596ba355ac561759da4d8987533333cd6c57ca7.tar.gz
android_packages_apps_DeskClock-a596ba355ac561759da4d8987533333cd6c57ca7.tar.bz2
android_packages_apps_DeskClock-a596ba355ac561759da4d8987533333cd6c57ca7.zip
Proguard causing RuntimeException
This fixes: Parcel android.os.Parcel@3d522b0e: Unmarshalling unknown type code 7536751 at offset 808 LETTUCE-810 Change-Id: I0c735bf4c3d9e73af554f9c052a8e4a5e9dea095 (cherry picked from commit 3cc92a9e4edf8f28b6f0633b1be60d947b275741)
-rw-r--r--proguard.flags4
1 files changed, 4 insertions, 0 deletions
diff --git a/proguard.flags b/proguard.flags
index 81f119030..cbc586539 100644
--- a/proguard.flags
+++ b/proguard.flags
@@ -8,3 +8,7 @@
-keep class com.android.deskclock.widget.multiwaveview.* {
*;
}
+
+-keep class * implements android.os.Parcelable {
+ public static final android.os.Parcelable$Creator *;
+}