aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt b/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
index cda259b2..9f37ff2e 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
@@ -33,7 +33,11 @@ object Prefs : KPref() {
var notificationFreq: Long by kpref("notification_freq", -1L)
- var versionCode:Int by kpref("version_code", -1)
+ var versionCode: Int by kpref("version_code", -1)
+
+ var installDate: Long by kpref("install_date", -1L)
+
+ var identifier: Int by kpref("indentifier", -1)
private val loader = lazyResettable { Theme.values[Prefs.theme] }