blob: 4e8310ca9e263b6ad332112096cf4d3bef0df868 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
-keep class com.android.incallui.widget.multiwaveview.* {
*;
}
# Keep names that are used only by animation framework.
-keepclasseswithmembers class com.android.incallui.AnimationUtils$CrossFadeDrawable {
*** setCrossFadeAlpha(...);
}
# Any class or method annotated with NeededForTesting or NeededForReflection.
-keepclassmembers class * {
@com.android.contacts.common.test.NeededForTesting *;
@com.android.incallui.NeededForReflection *;
}
|