Loading java/src/com/android/inputmethod/latin/LatinIME.java +4 −4 Original line number Diff line number Diff line Loading @@ -892,11 +892,11 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen Log.d(TAG, "isSetupWizardFinished 2"); boolean isDeviceProvisioned = android.provider.Settings.Global.getInt(contentResolver, android.provider.Settings.Global.DEVICE_PROVISIONED, 0) == 1; boolean isUserSetupComplete = android.provider.Settings.Secure.getInt(contentResolver, android.provider.Settings.Secure.USER_SETUP_COMPLETE, 0) == 1; Log.d(TAG, "isSetupWizardFinished " + isDeviceProvisioned + " " + isUserSetupComplete); //boolean isUserSetupComplete = android.provider.Settings.Secure.getInt(contentResolver, // android.provider.Settings.Secure.USER_SETUP_COMPLETE, 0) == 1; Log.d(TAG, "isSetupWizardFinished " + isDeviceProvisioned ); return isDeviceProvisioned && isUserSetupComplete; return isDeviceProvisioned;// && isUserSetupComplete; } @Override Loading Loading
java/src/com/android/inputmethod/latin/LatinIME.java +4 −4 Original line number Diff line number Diff line Loading @@ -892,11 +892,11 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen Log.d(TAG, "isSetupWizardFinished 2"); boolean isDeviceProvisioned = android.provider.Settings.Global.getInt(contentResolver, android.provider.Settings.Global.DEVICE_PROVISIONED, 0) == 1; boolean isUserSetupComplete = android.provider.Settings.Secure.getInt(contentResolver, android.provider.Settings.Secure.USER_SETUP_COMPLETE, 0) == 1; Log.d(TAG, "isSetupWizardFinished " + isDeviceProvisioned + " " + isUserSetupComplete); //boolean isUserSetupComplete = android.provider.Settings.Secure.getInt(contentResolver, // android.provider.Settings.Secure.USER_SETUP_COMPLETE, 0) == 1; Log.d(TAG, "isSetupWizardFinished " + isDeviceProvisioned ); return isDeviceProvisioned && isUserSetupComplete; return isDeviceProvisioned;// && isUserSetupComplete; } @Override Loading