Skip to content

Commit

Permalink
Woops version bump 0.1.2!!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
fenimore committed May 30, 2021
1 parent 17fbe18 commit be2fba5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.timenotclocks.bookcase"
minSdkVersion 26
targetSdkVersion 30
versionCode 11
versionName "0.1.1"
versionCode 12
versionName "0.1.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
Binary file modified app/release/app-release.apk
Binary file not shown.
4 changes: 2 additions & 2 deletions app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
{
"type": "SINGLE",
"filters": [],
"versionCode": 10,
"versionName": "0.1.0",
"versionCode": 12,
"versionName": "0.1.2",
"outputFile": "app-release.apk"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,7 @@ abstract class BookDatabase : RoomDatabase() {
context.applicationContext,
BookDatabase::class.java,
"books"
).addMigrations(MIGRATION_5_6).addMigrations(MIGRATION_6_7)
.fallbackToDestructiveMigration()
).addMigrations(MIGRATION_5_6, MIGRATION_6_7)
.addCallback(BookDatabaseCallback(scope))
.build()
INSTANCE = instance
Expand Down

0 comments on commit be2fba5

Please sign in to comment.