blob: d65924f7c4af152108c0b9b89b66d0a3c9d8106c [file] [log] [blame]
Tadashi G. Takaoka15f6d4a2012-10-03 17:36:45 +09001# Keep classes and methods that have the @UsedForTesting annotation
2-keep @com.android.inputmethod.annotations.UsedForTesting class *
3-keepclassmembers class * {
4@com.android.inputmethod.annotations.UsedForTesting *;
Ken Wakasa96fdc4d2012-03-31 18:32:48 +09005}
6
Tadashi G. Takaoka15f6d4a2012-10-03 17:36:45 +09007# Keep classes and methods that have the @ExternallyReferenced annotation
8-keep @com.android.inputmethod.annotations.ExternallyReferenced class *
9-keepclassmembers class * {
10@com.android.inputmethod.annotations.ExternallyReferenced *;
Tadashi G. Takaoka2866da82012-05-23 17:37:20 +090011}