We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bc0e38f + f3cb55f commit 93f4f96Copy full SHA for 93f4f96
android/Omnivore/app/build.gradle.kts
@@ -27,8 +27,8 @@ android {
27
applicationId = "app.omnivore.omnivore"
28
minSdk = 26
29
targetSdk = 34
30
- versionCode = 200001
31
- versionName = "0.200.1"
+ versionCode = 200002
+ versionName = "0.200.2"
32
33
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
34
vectorDrawables {
android/Omnivore/app/src/main/java/app/omnivore/omnivore/di/DatabaseModule.kt
@@ -21,5 +21,7 @@ object DatabaseModule {
21
context,
22
OmnivoreDatabase::class.java,
23
"omnivore-database",
24
- ).build()
+ )
25
+ .fallbackToDestructiveMigration()
26
+ .build()
}
0 commit comments