Skip to content

Commit

Permalink
Merge branch 'main' into export-tests-results-kiwi
Browse files Browse the repository at this point in the history
  • Loading branch information
acosta434 authored Nov 21, 2023
2 parents e774af1 + 9b3702e commit b98afff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ class VocableSharedPreferences : KoinComponent {
}

fun getHeadTrackingEnabled(): Boolean =
encryptedPrefs.getBoolean(KEY_HEAD_TRACKING_ENABLED, false)
encryptedPrefs.getBoolean(KEY_HEAD_TRACKING_ENABLED, true)

fun setFirstTime() {
encryptedPrefs.edit().putBoolean(KEY_FIRST_TIME, false).apply()
}

fun getFirstTime(): Boolean =
encryptedPrefs.getBoolean(KEY_FIRST_TIME, true)
}
}

0 comments on commit b98afff

Please sign in to comment.