blob: 4da182b1fa2761ef46006f1e1bb75c722d8b5f05 [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}
Ken Wakasab1b21d42013-06-26 17:58:39 +090012
13# Keep native methods
14-keep class * {
15native <methods>;
16}