version 13, 1.2.3: fixed a bug that would show new feature sheets to users even if they haven't used the app before

This commit is contained in:
denizk0461
2024-01-14 20:53:30 +01:00
parent c24973992a
commit 7c7c866de8
2 changed files with 4 additions and 2 deletions
+2 -2
View File
@@ -12,8 +12,8 @@ android {
applicationId = "com.denizk0461.weserplaner" applicationId = "com.denizk0461.weserplaner"
minSdk = 24 minSdk = 24
targetSdk = 34 targetSdk = 34
versionCode = 12 versionCode = 13
versionName = "1.2.2" versionName = "1.2.3"
resourceConfigurations += arrayOf("en", "de") resourceConfigurations += arrayOf("en", "de")
@@ -12,5 +12,7 @@ class IntroductionViewModel(application: Application) : AppViewModel(application
*/ */
fun completedIntroduction() { fun completedIntroduction() {
repo.setPreferenceFirstLaunch(false) repo.setPreferenceFirstLaunch(false)
repo.setPreferenceFeatureTimetables(true)
repo.setPreferenceFeatureDate(true)
} }
} }