0

It just says: "Cannot resolve symbol "getBoolean""

final String PREFS_NAME = "write";

SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);

if (settings.getBoolean("my_first_time", true)) {
    //the app is being launched for first time, do something
    Log.d("Comments", "First time");


    Intent intent = new Intent(this, firststart.class);


    settings.edit().putBoolean("my_first_time", false).commit();
}
Nic
  • 11,374
  • 19
  • 75
  • 96
AndroidDev
  • 11
  • 5

0 Answers0