package de.westnordost.streetcomplete; /** Constant class to have all the identifiers for shared preferences in one place */ public class Prefs { public static final String OAUTH = "oauth", OAUTH_ACCESS_TOKEN = "oauth.accessToken", OAUTH_ACCESS_TOKEN_SECRET = "oauth.accessTokenSecret", MAP_TILECACHE = "map.tilecache", CURRENT_COUNTRY = "location.currentCountry", OSM_USER_ID = "osm.userid", SHOW_NOTES_NOT_PHRASED_AS_QUESTIONS = "display.nonQuestionNotes", QUESTS_EXPIRATION_TIME_IN_MIN = "download.expirationTime", AUTOSYNC = "autosync", LAST_SOLVED_QUEST_TIME = "changesets.lastQuestSolvedTime", KEEP_SCREEN_ON = "display.keepScreenOn"; // these are not persisted public static final String FOLLOW_POSITION = "followPosition", HAS_ASKED_FOR_LOCATION = "hasAskedForLocation"; public enum Autosync { ON, WIFI, OFF } }