Fixing proguard issue for resize animations
Change-Id: I5c91644f4efc4b152b6c8c7e6ee5818cc0715e02
This commit is contained in:
parent
27c09b05d3
commit
ee31b79739
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue