2010-02-19 18:52:09 -08:00
|
|
|
-keep class com.android.inputmethod.latin.BinaryDictionary {
|
|
|
|
int mDictLength;
|
2010-04-28 18:12:58 -07:00
|
|
|
<init>(...);
|
|
|
|
}
|
|
|
|
|
|
|
|
-keep class com.android.inputmethod.latin.Suggest {
|
|
|
|
<init>(...);
|
2010-12-16 22:55:13 +09: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 20:30:26 +09:00
|
|
|
void waitForDictionaryLoading();
|
2010-02-19 18:52:09 -08:00
|
|
|
}
|
2011-03-03 23:06:45 -08:00
|
|
|
|
|
|
|
-keep class com.android.inputmethod.latin.AutoCorrection {
|
|
|
|
java.lang.CharSequence getAutoCorrectionWord();
|
|
|
|
}
|
2011-03-15 11:46:32 -07:00
|
|
|
|
|
|
|
-keep class com.android.inputmethod.latin.Utils {
|
|
|
|
boolean equalsIgnoreCase(...);
|
|
|
|
}
|
2011-05-31 16:27:32 +09:00
|
|
|
|
|
|
|
-keep class com.android.inputmethod.latin.spellcheck.SpellChecker {
|
|
|
|
*;
|
|
|
|
}
|