fixed crash during animation to all apps

- proguard was stripping getter/setter that was
  used only by reflection
This commit is contained in:
Michael Jurka 2010-08-05 11:00:01 -07:00
parent d4ede5325b
commit 6860a8913a
1 changed files with 5 additions and 0 deletions

View File

@ -7,6 +7,11 @@
public void onClickAllAppsButton(android.view.View);
}
-keep class com.android.launcher2.CellLayout {
public float getDimmedBitmapAlpha();
public void setDimmedBitmapAlpha(float);
}
-keep class com.android.launcher2.AllApps3D$Defines {
*;
}