summaryrefslogtreecommitdiffstats
path: root/proguard.flags
diff options
context:
space:
mode:
authorAdam Cohen <adamcohen@google.com>2011-03-01 12:36:37 -0800
committerAdam Cohen <adamcohen@google.com>2011-03-01 12:36:37 -0800
commitee31b7973975ae43ca9d2a7de1b99cb520d48a08 (patch)
tree8fba90b73d6ce8cc44fc6c870013cc39010aa298 /proguard.flags
parent27c09b05d3ed2a4ce9d53140216aba998727a569 (diff)
downloadandroid_packages_apps_Trebuchet-ee31b7973975ae43ca9d2a7de1b99cb520d48a08.tar.gz
android_packages_apps_Trebuchet-ee31b7973975ae43ca9d2a7de1b99cb520d48a08.tar.bz2
android_packages_apps_Trebuchet-ee31b7973975ae43ca9d2a7de1b99cb520d48a08.zip
Fixing proguard issue for resize animations
Change-Id: I5c91644f4efc4b152b6c8c7e6ee5818cc0715e02
Diffstat (limited to 'proguard.flags')
-rw-r--r--proguard.flags11
1 files changed, 11 insertions, 0 deletions
diff --git a/proguard.flags b/proguard.flags
index 699f23ef5..19c8fd599 100644
--- a/proguard.flags
+++ b/proguard.flags
@@ -20,6 +20,17 @@
public void setHoverAlpha(float);
}
+-keep class com.android.launcher2.CellLayout$LayoutParams {
+ public void setWidth(int);
+ public int getWidth();
+ public void setHeight(int);
+ public int getHeight();
+ public void setX(int);
+ public int getX();
+ public void setY(int);
+ public int getY();
+}
+
-keep class com.android.launcher2.Workspace {
public float getBackgroundAlpha();
public void setBackgroundAlpha(float);