summaryrefslogtreecommitdiff
path: root/platform/android/libs/google_play_services/proguard.txt
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2014-04-14 22:16:13 -0300
committerJuan Linietsky <reduzio@gmail.com>2014-04-14 22:16:13 -0300
commit162d2ebe4f1a6da2da62ad45c4cbfb161157d31d (patch)
tree571a54b06152ae79cadd5a266f3fdeee8f58c3cd /platform/android/libs/google_play_services/proguard.txt
parent606b9d960af6ca4517503328b870214b96ff21d3 (diff)
-Added google play services (needed for some stuff)
-Added new screen resizing options, stretch_2d is removed, new much more flexible ones. -Fixed bug in viewport (can create more instances in 3d-in-2d demo now) -Can set android permissions and screen sizes manually in the export settings -Changed export templates extension to .tpz (too many people unzipped the manually..) -File dialog now ensures that the proper extension is used (will not allow to save without it) -Fixed bug that made collision exceptions not work in 2D
Diffstat (limited to 'platform/android/libs/google_play_services/proguard.txt')
-rw-r--r--platform/android/libs/google_play_services/proguard.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/platform/android/libs/google_play_services/proguard.txt b/platform/android/libs/google_play_services/proguard.txt
new file mode 100644
index 0000000000..0c9693a2c0
--- /dev/null
+++ b/platform/android/libs/google_play_services/proguard.txt
@@ -0,0 +1,20 @@
+-keep class * extends java.util.ListResourceBundle {
+ protected Object[][] getContents();
+}
+
+# Keep SafeParcelable value, needed for reflection. This is required to support backwards
+# compatibility of some classes.
+-keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
+ public static final *** NULL;
+}
+
+# Keep the names of classes/members we need for client functionality.
+-keepnames @com.google.android.gms.common.annotation.KeepName class *
+-keepclassmembernames class * {
+ @com.google.android.gms.common.annotation.KeepName *;
+}
+
+# Needed for Parcelable/SafeParcelable Creators to not get stripped
+-keepnames class * implements android.os.Parcelable {
+ public static final ** CREATOR;
+} \ No newline at end of file