Set initial preferences bools to true

This commit is contained in:
Oizaro 2020-10-03 05:31:29 +02:00
parent a17969a23a
commit 8412e3e7ee
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ public class CheckinPrefs implements SharedPreferences.OnSharedPreferenceChangeL
private SharedPreferences preferences;
private SharedPreferences systemDefaultPreferences;
private boolean checkinEnabled = false;
private boolean checkinEnabled = true;
private CheckinPrefs(Context context) {
if (context != null) {

View File

@ -65,7 +65,7 @@ public class GcmPrefs implements SharedPreferences.OnSharedPreferenceChangeListe
private boolean gcmLogEnabled = true;
private String lastPersistedId = "";
private boolean confirmNewApps = false;
private boolean gcmEnabled = false;
private boolean gcmEnabled = true;
private int networkMobile = 0;
private int networkWifi = 0;