mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
0053bc5832
Change-Id: I741a12508a3a05e2e517e187a7f197e6a661eddb
17 lines
540 B
Plaintext
17 lines
540 B
Plaintext
# Keep classes and methods that have the @UsedForTesting annotation
|
|
-keep @com.android.inputmethod.annotations.UsedForTesting class *
|
|
-keepclassmembers class * {
|
|
@com.android.inputmethod.annotations.UsedForTesting *;
|
|
}
|
|
|
|
# Keep classes and methods that have the @ExternallyReferenced annotation
|
|
-keep @com.android.inputmethod.annotations.ExternallyReferenced class *
|
|
-keepclassmembers class * {
|
|
@com.android.inputmethod.annotations.ExternallyReferenced *;
|
|
}
|
|
|
|
# Keep native methods
|
|
-keepclassmembers class * {
|
|
native <methods>;
|
|
}
|