- Initial change to use the event bus by dispatching package events directly to the TaskStackViews instead of passing them down the view hierarchy manually. Change-Id: Ic68df9eeefb79eab8ded84b74264a93719b40643
23 lines
720 B
Plaintext
23 lines
720 B
Plaintext
-keep class com.android.systemui.statusbar.policy.KeyButtonView {
|
|
public float getDrawingAlpha();
|
|
public void setDrawingAlpha(float);
|
|
}
|
|
|
|
-keep class com.android.systemui.statusbar.policy.KeyButtonRipple {
|
|
public float getGlowAlpha();
|
|
public float getGlowScale();
|
|
public void setGlowAlpha(float);
|
|
public void setGlowScale(float);
|
|
}
|
|
|
|
-keep class com.android.systemui.statusbar.phone.PhoneStatusBar
|
|
-keep class com.android.systemui.statusbar.tv.TvStatusBar
|
|
-keep class com.android.systemui.recents.*
|
|
|
|
-keepclassmembers class ** {
|
|
public void onBusEvent(**);
|
|
public void onInterprocessBusEvent(**);
|
|
}
|
|
-keepclassmembers class ** extends **.EventBus$InterprocessEvent {
|
|
public <init>(android.os.Bundle);
|
|
} |