Home | History | Annotate | Download | only in filterednumber

Lines Matching defs:sharedPreferences

21 import android.content.SharedPreferences;
39 private final SharedPreferences sharedPreferences;
43 * Constructs the BlockedNumbersAutoMigrator with the given {@link SharedPreferences} and {@link
46 * @param sharedPreferences The SharedPreferences used to persist information.
49 * @throws NullPointerException if sharedPreferences or queryHandler are null.
51 public BlockedNumbersAutoMigrator(SharedPreferences sharedPreferences,
53 this.sharedPreferences = Preconditions.checkNotNull(sharedPreferences);
83 if (sharedPreferences.contains(HAS_CHECKED_AUTO_MIGRATE_KEY)) {
88 sharedPreferences.edit().putBoolean(HAS_CHECKED_AUTO_MIGRATE_KEY, true).apply();