Merge pull request #24 from Shabinder/develop

1.7 crash fixes
This commit is contained in:
Shabinder Singh 2020-12-04 14:29:41 +05:30 committed by GitHub
commit 965206e384
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -39,8 +39,8 @@ android {
applicationId 'com.shabinder.spotiflyer'
minSdkVersion 22
targetSdkVersion 30
versionCode 9
versionName "1.7"
versionCode 10
versionName "1.8"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

View File

@ -22,7 +22,7 @@ import androidx.room.Database
import androidx.room.Room
import androidx.room.RoomDatabase
@Database(entities = [DownloadRecord::class], version = 1, exportSchema = false)
@Database(entities = [DownloadRecord::class], version = 2, exportSchema = false)
abstract class DownloadRecordDatabase:RoomDatabase() {
abstract val databaseDAO: DatabaseDAO

View File

@ -18,8 +18,8 @@
<AppUpdater>
<update>
<latestVersion>1.7</latestVersion>
<latestVersionCode>9</latestVersionCode>
<latestVersion>1.8</latestVersion>
<latestVersionCode>10</latestVersionCode>
<url>https://github.com/Shabinder/SpotiFlyer/releases/</url>
</update>
</AppUpdater>