2010-02-20 02:52:09 +00:00
|
|
|
-keep class com.android.inputmethod.latin.BinaryDictionary {
|
|
|
|
int mDictLength;
|
2010-04-29 01:12:58 +00:00
|
|
|
<init>(...);
|
|
|
|
}
|
|
|
|
|
|
|
|
-keep class com.android.inputmethod.latin.Suggest {
|
|
|
|
<init>(...);
|
2010-12-16 13:55:13 +00:00
|
|
|
com.android.inputmethod.latin.SuggestedWords getSuggestions(...);
|
|
|
|
}
|
|
|
|
|
|
|
|
-keep class com.android.inputmethod.latin.UserBigramDictionary {
|
|
|
|
void setDatabaseMax(int);
|
|
|
|
void setDatabaseDelete(int);
|
|
|
|
void waitUntilUpdateDBDone();
|
2010-12-20 11:30:26 +00:00
|
|
|
void waitForDictionaryLoading();
|
2010-02-20 02:52:09 +00:00
|
|
|
}
|
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
|
|
|
|
|
|
|
-keep class com.android.inputmethod.latin.spellcheck.SpellChecker {
|
|
|
|
*;
|
|
|
|
}
|
2011-07-04 13:16:01 +00:00
|
|
|
|
2011-08-12 08:18:32 +00:00
|
|
|
-keep class com.android.inputmethod.latin.spellcheck.SpellCheckerSettingsFragment {
|
|
|
|
*;
|
|
|
|
}
|
|
|
|
|
2011-07-04 13:16:01 +00:00
|
|
|
-keep class com.android.inputmethod.latin.SettingsActivity {
|
|
|
|
*;
|
|
|
|
}
|
2011-07-29 00:05:40 +00:00
|
|
|
|
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
|
|
|
|
|
|
|
# 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.**
|