Ta-wei Yen | 34d3b56 | 2016-05-03 14:10:03 -0700 | [diff] [blame] | 1 | # Keep classes and methods that have the guava @VisibleForTesting annotation |
| 2 | -keep @**.VisibleForTesting class * |
| 3 | -keepclassmembers class * { |
| 4 | @**.VisibleForTesting *; |
| 5 | } |
Ta-wei Yen | 4e0e3fb | 2016-06-08 18:35:42 -0700 | [diff] [blame] | 6 | -keep @**.NeededForTesting class * |
| 7 | -keepclassmembers class * { |
| 8 | @**.NeededForTesting *; |
| 9 | } |
Hall Liu | e31bac6 | 2020-12-23 19:16:10 -0800 | [diff] [blame] | 10 | # TODO: remove this after call composer gets more integrated. |
| 11 | # for the time being, this is here so that the tests don't fail when encountering dead code. |
| 12 | -keep class com.android.phone.callcomposer.** { |
| 13 | *; |
| 14 | } |
Brad Ebinger | a58ecc2 | 2017-08-11 11:08:52 -0700 | [diff] [blame] | 15 | -verbose |