summaryrefslogtreecommitdiffstats
path: root/proguard.flags
blob: 78d567e122c09e60b174a9b45f6cf50dc5482ebd (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
-keep class com.android.incallui.widget.multiwaveview.* {
  *;
}

-keep public class com.android.incallui.MediaHandler
-keep public class com.android.incallui.ImsCamera

-keepclasseswithmembers class * {
    native <methods>;
}

-keep class com.android.incallui.MediaHandler {
    *** onMediaEvent(...);
}


# 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 *;
}