mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
0a4924518b
* commit '09abb2c7de0828c0ec8ee58a442722fbfdf628f5': Make ProximityInfo copy constructor for test
56 lines
1.5 KiB
Plaintext
56 lines
1.5 KiB
Plaintext
-keep class com.android.inputmethod.latin.BinaryDictionary {
|
|
int mDictLength;
|
|
<init>(...);
|
|
}
|
|
|
|
-keep class com.android.inputmethod.latin.Flag {
|
|
*;
|
|
}
|
|
|
|
-keep class com.android.inputmethod.keyboard.ProximityInfo {
|
|
<init>(com.android.inputmethod.keyboard.ProximityInfo);
|
|
}
|
|
|
|
-keep class com.android.inputmethod.latin.Suggest {
|
|
<init>(...);
|
|
com.android.inputmethod.latin.SuggestedWords getSuggestions(...);
|
|
}
|
|
|
|
-keep class com.android.inputmethod.latin.AutoCorrection {
|
|
java.lang.CharSequence getAutoCorrectionWord();
|
|
}
|
|
|
|
-keep class com.android.inputmethod.latin.Utils {
|
|
boolean equalsIgnoreCase(...);
|
|
}
|
|
|
|
-keep class com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsFragment {
|
|
*;
|
|
}
|
|
|
|
-keep class com.android.inputmethod.keyboard.LatinKeyboardView {
|
|
# Keep getter/setter methods for ObjectAnimator
|
|
int getLanguageOnSpacebarAnimAlpha();
|
|
void setLanguageOnSpacebarAnimAlpha(int);
|
|
int getAltCodeKeyWhileTypingAnimAlpha();
|
|
void setAltCodeKeyWhileTypingAnimAlpha(int);
|
|
}
|
|
|
|
-keep class com.android.inputmethod.keyboard.MoreKeysKeyboard$Builder$MoreKeysKeyboardParams {
|
|
<init>(...);
|
|
}
|
|
|
|
-keep class com.android.inputmethod.latin.ResearchLogger {
|
|
void flush();
|
|
}
|
|
|
|
-keep class com.android.inputmethod.keyboard.KeyboardLayoutSet$Builder {
|
|
void setTouchPositionCorrectionEnabled(...);
|
|
}
|
|
|
|
# The support library contains references to newer platform versions.
|
|
# Don't warn about those in case this app is linking against an older
|
|
# platform version. We know about them, and they are safe.
|
|
-dontwarn android.support.v4.**
|
|
-dontwarn android.support.v13.**
|