diff options
author | 2024-12-16 21:45:41 -0500 | |
---|---|---|
committer | 2025-01-11 14:17:35 -0500 | |
commit | e9a0e66716dab4dd3184d009d8920de1961efdfa (patch) | |
tree | 02dcc096643d74645bf28459c2834c3d4a2ad7f2 /java/proguard.flags | |
parent | fb3b9360d70596d7e921de8bf7d3ca99564a077e (diff) | |
download | latinime-e9a0e66716dab4dd3184d009d8920de1961efdfa.tar.gz latinime-e9a0e66716dab4dd3184d009d8920de1961efdfa.tar.xz latinime-e9a0e66716dab4dd3184d009d8920de1961efdfa.zip |
Rename to Kelar Keyboard (org.kelar.inputmethod.latin)
Diffstat (limited to 'java/proguard.flags')
-rw-r--r-- | java/proguard.flags | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/java/proguard.flags b/java/proguard.flags index 0ebca04de..94d4dbd6e 100644 --- a/java/proguard.flags +++ b/java/proguard.flags @@ -1,19 +1,19 @@ # Keep classes and methods that have the @UsedForTesting annotation # TODO(b/373579455): Evaluate if <init> needs to be kept. --keep @com.android.inputmethod.annotations.UsedForTesting class * { +-keep @org.kelar.inputmethod.annotations.UsedForTesting class * { void <init>(); } -keepclassmembers class * { - @com.android.inputmethod.annotations.UsedForTesting *; + @org.kelar.inputmethod.annotations.UsedForTesting *; } # Keep classes and methods that have the @ExternallyReferenced annotation # TODO(b/373579455): Evaluate if <init> needs to be kept. --keep @com.android.inputmethod.annotations.ExternallyReferenced class * { +-keep @org.kelar.inputmethod.annotations.ExternallyReferenced class * { void <init>(); } -keepclassmembers class * { - @com.android.inputmethod.annotations.ExternallyReferenced *; + @org.kelar.inputmethod.annotations.ExternallyReferenced *; } # Keep native methods @@ -24,26 +24,26 @@ # Keep classes that are used as a parameter type of methods that are also marked as keep # to preserve changing those methods' signature. # TODO(b/373579455): Evaluate if <init> needs to be kept. --keep class com.android.inputmethod.latin.AssetFileAddress { +-keep class org.kelar.inputmethod.latin.AssetFileAddress { void <init>(); } # TODO(b/373579455): Evaluate if <init> needs to be kept. --keep class com.android.inputmethod.latin.Dictionary { +-keep class org.kelar.inputmethod.latin.Dictionary { void <init>(); } # TODO(b/373579455): Evaluate if <init> needs to be kept. --keep class com.android.inputmethod.latin.NgramContext { +-keep class org.kelar.inputmethod.latin.NgramContext { void <init>(); } # TODO(b/373579455): Evaluate if <init> needs to be kept. --keep class com.android.inputmethod.latin.makedict.ProbabilityInfo { +-keep class org.kelar.inputmethod.latin.makedict.ProbabilityInfo { void <init>(); } # TODO(b/373579455): Evaluate if <init> needs to be kept. --keep class com.android.inputmethod.latin.utils.LanguageModelParam { +-keep class org.kelar.inputmethod.latin.utils.LanguageModelParam { void <init>(); } # TODO: remove once used in code. --keep class com.android.inputmethod.keyboard.KeyboardLayout { *; } +-keep class org.kelar.inputmethod.keyboard.KeyboardLayout { *; } |