aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAdnan Begovic <adnan@cyngn.com>2016-03-07 11:48:37 -0800
committerAdnan Begovic <adnan@cyngn.com>2016-03-08 09:24:32 -0800
commit7ed4fcaf8e51bfa2d8c3d1a0ca16c9250eac271d (patch)
tree28fdcc38302c8b56f6cfd33125aaf2a199c66c03 /tests
parentc0bd6d0882ff05d732bfcb82ef797e72c222e00f (diff)
downloadvendor_cmsdk-7ed4fcaf8e51bfa2d8c3d1a0ca16c9250eac271d.zip
vendor_cmsdk-7ed4fcaf8e51bfa2d8c3d1a0ca16c9250eac271d.tar.gz
vendor_cmsdk-7ed4fcaf8e51bfa2d8c3d1a0ca16c9250eac271d.tar.bz2
cmsdk: Keep generated java classes from aidl interfaces.
Keep any classes extending IInterface so we can have the BinderTransactionTest run successfully. Change-Id: Ic49794017e472499cbbf351dfa12732854ceea8d TICKET: CYNGNOS-2189
Diffstat (limited to 'tests')
-rw-r--r--tests/proguard.flags3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/proguard.flags b/tests/proguard.flags
index e2a11a2..d9e855c 100644
--- a/tests/proguard.flags
+++ b/tests/proguard.flags
@@ -32,6 +32,9 @@
-keep interface junit.** { *; }
-keep interface org.junit.** { *; }
+# Keep compiled java classes from declared aidl's within the test package
+-keep public class * extends android.os.IInterface { *; }
+
# Don't warn about the Android Support Test JUnit Runner
-dontwarn android.support.**
-dontwarn android.test.**