From e2a85aa1626bd8074d34557c3e3b2aedf3da14f1 Mon Sep 17 00:00:00 2001 From: Daichi Hirono Date: Fri, 24 Jul 2015 17:48:19 +0900 Subject: [PATCH] Let proguard keep classes/methods annotated with internal VisibleForTesting. BUG=None Change-Id: I194aac5057a7368e91b401c639100c86b2426265 --- core/proguard.flags | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/proguard.flags b/core/proguard.flags index 0641627e5..6ed1f9b3b 100644 --- a/core/proguard.flags +++ b/core/proguard.flags @@ -10,9 +10,9 @@ #-flattenpackagehierarchy # Keep classes and methods that have the guava @VisibleForTesting annotation --keep @com.google.common.annotations.VisibleForTesting class * +-keep @**.VisibleForTesting class * -keepclassmembers class * { -@com.google.common.annotations.VisibleForTesting *; +@**.VisibleForTesting *; } -include proguard_basic_keeps.flags