summaryrefslogtreecommitdiff
path: root/proguard.flags
diff options
context:
space:
mode:
authorSantos Cordon <santoscordon@google.com>2013-08-28 18:34:12 -0700
committerSantos Cordon <santoscordon@google.com>2013-08-28 18:34:12 -0700
commit869e81a60e8481401a86c46c943155e134db94a5 (patch)
tree2629c91d39a2bec337bddfff8005b7b8bf3e4545 /proguard.flags
parent11b099d632e87965c4240b1a1829989d4e2e2193 (diff)
downloadInCallUI-869e81a60e8481401a86c46c943155e134db94a5.tar.gz
adding crossFade animation to proguard
crossfade animation was not working for photos and throwing a lot of errors because it was missing from proguard flags. This fixes it. Change-Id: I4ad9ef4a9cc3424e47b5c4cd3db9fa0678330637
Diffstat (limited to 'proguard.flags')
-rw-r--r--proguard.flags5
1 files changed, 5 insertions, 0 deletions
diff --git a/proguard.flags b/proguard.flags
index 8fa10e0d..bc881435 100644
--- a/proguard.flags
+++ b/proguard.flags
@@ -1,3 +1,8 @@
-keep class com.android.incallui.widget.multiwaveview.* {
*;
}
+
+# Keep names that are used only by animation framework.
+-keepclasseswithmembers class com.android.incallui.AnimationUtils$CrossFadeDrawable {
+ *** setCrossFadeAlpha(...);
+}