mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
am f77e9d7e: Merge "Initialize ResearchLogger later to avoid NPE"
# Via Android (Google) Code Review (1) and Kurt Partridge (1) * commit 'f77e9d7e3adcd89c00243f4215bebb3ece3b59dd': Initialize ResearchLogger later to avoid NPE
This commit is contained in:
commit
768a00a77f
@ -412,9 +412,6 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
|
||||
public void onCreate() {
|
||||
Settings.init(this);
|
||||
LatinImeLogger.init(this);
|
||||
if (ProductionFlag.IS_EXPERIMENTAL) {
|
||||
ResearchLogger.getInstance().init(this);
|
||||
}
|
||||
RichInputMethodManager.init(this);
|
||||
mRichImm = RichInputMethodManager.getInstance();
|
||||
SubtypeSwitcher.init(this);
|
||||
@ -430,6 +427,9 @@ public final class LatinIME extends InputMethodService implements KeyboardAction
|
||||
loadSettings();
|
||||
initSuggest();
|
||||
|
||||
if (ProductionFlag.IS_EXPERIMENTAL) {
|
||||
ResearchLogger.getInstance().init(this);
|
||||
}
|
||||
mDisplayOrientation = getResources().getConfiguration().orientation;
|
||||
|
||||
// Register to receive ringer mode change and network state change.
|
||||
|
Loading…
x
Reference in New Issue
Block a user