2010-02-20 02:52:09 +00:00
|
|
|
-keep class com.android.inputmethod.latin.BinaryDictionary {
|
|
|
|
int mDictLength;
|
2012-03-31 09:32:48 +00:00
|
|
|
<init>(...);
|
|
|
|
}
|
|
|
|
|
|
|
|
-keep class com.android.inputmethod.latin.Flag {
|
|
|
|
*;
|
2010-04-29 01:12:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
-keep class com.android.inputmethod.latin.Suggest {
|
|
|
|
<init>(...);
|
2010-12-16 13:55:13 +00:00
|
|
|
com.android.inputmethod.latin.SuggestedWords getSuggestions(...);
|
|
|
|
}
|
|
|
|
|
2011-03-04 07:06:45 +00:00
|
|
|
-keep class com.android.inputmethod.latin.AutoCorrection {
|
|
|
|
java.lang.CharSequence getAutoCorrectionWord();
|
|
|
|
}
|
2011-03-15 18:46:32 +00:00
|
|
|
|
|
|
|
-keep class com.android.inputmethod.latin.Utils {
|
|
|
|
boolean equalsIgnoreCase(...);
|
|
|
|
}
|
2011-05-31 07:27:32 +00:00
|
|
|
|
2011-08-12 08:18:32 +00:00
|
|
|
-keep class com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsFragment {
|
|
|
|
*;
|
|
|
|
}
|
|
|
|
|
2012-03-16 05:05:20 +00:00
|
|
|
-keep class com.android.inputmethod.keyboard.LatinKeyboardView {
|
|
|
|
# Keep getter/setter methods for ObjectAnimator
|
|
|
|
int getLanguageOnSpacebarAnimAlpha();
|
|
|
|
void setLanguageOnSpacebarAnimAlpha(int);
|
2012-04-12 06:33:48 +00:00
|
|
|
int getAltCodeKeyWhileTypingAnimAlpha();
|
2012-03-16 05:05:20 +00:00
|
|
|
void setAltCodeKeyWhileTypingAnimAlpha(int);
|
|
|
|
}
|
|
|
|
|
2012-02-08 07:12:11 +00:00
|
|
|
-keep class com.android.inputmethod.keyboard.MoreKeysKeyboard$Builder$MoreKeysKeyboardParams {
|
2011-07-29 00:05:40 +00:00
|
|
|
<init>(...);
|
|
|
|
}
|
2012-03-05 23:18:02 +00:00
|
|
|
|
2012-03-23 13:00:15 +00:00
|
|
|
-keep class com.android.inputmethod.latin.ResearchLogger {
|
|
|
|
void setLogFileManager(...);
|
2012-04-10 01:39:35 +00:00
|
|
|
void clearAll();
|
|
|
|
com.android.inputmethod.latin.ResearchLogger$LogFileManager getLogFileManager();
|
|
|
|
}
|
|
|
|
|
|
|
|
-keep class com.android.inputmethod.latin.ResearchLogger$LogFileManager {
|
|
|
|
java.lang.String getContents();
|
2012-03-23 13:00:15 +00:00
|
|
|
}
|
|
|
|
|
2012-04-04 05:30:42 +00:00
|
|
|
-keep class com.android.inputmethod.keyboard.KeyboardLayoutSet$Builder {
|
2012-04-02 10:11:09 +00:00
|
|
|
void setTouchPositionCorrectionEnabled(...);
|
|
|
|
}
|
|
|
|
|
2012-03-05 23:18:02 +00:00
|
|
|
# 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.**
|