blob: fb74b64cb92b40d2a58d7907dd392a91c339535a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
-keep public class * {
public void setBackgroundAlpha(float);
public float getBackgroundAlpha();
public void setContentAlpha(float);
public float getContentAlpha();
public void setAlpha(float);
public float getAlpha();
public void setAlpha(int);
public int getAlpha();
public void setRotationX(float);
public float getRotationX();
public void setRotationY(float);
public float getRotationY();
public void setPivotX(float);
public float getPivotX();
public void setPivotY(float);
public float getPivotY();
public void setScaleX(float);
public float getScaleX();
public void setScaleY(float);
public float getScaleY();
public void setTranslationX(float);
public float getTranslationX();
public void setTranslationY(float);
public float getTranslationY();
}
|