frag to acts with mapobox moving ptr demo #17

Merged
s411201 merged 8 commits from mapBoxsToDevelop into develop 2018-10-13 22:44:36 +02:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 997765ddb5 - Show all commits

View File

@ -30,7 +30,7 @@ public class StartupActivity extends AppCompatActivity {
} }
private boolean isLoggedIn() { private boolean isLoggedIn() {
return this.getSharedPreferences("fmtPrefs", Context.MODE_PRIVATE).getBoolean("loggedIn",false); return this.getSharedPreferences("APP_PREF", Context.MODE_PRIVATE).getBoolean("loggedIn",false);
} }
@Override @Override

View File

@ -17,7 +17,7 @@ public class PrefUtils {
public static void storeApiKey(Context context, String apiKey) { public static void storeApiKey(Context context, String apiKey) {
SharedPreferences.Editor editor = getSharedPreferences(context).edit(); SharedPreferences.Editor editor = getSharedPreferences(context).edit();
editor.putString("API_KEY", apiKey); editor.putString("API_KEY", apiKey).putBoolean("loggedIn",true);
editor.commit(); editor.commit();
} }