1.7 crash fixes

This commit is contained in:
Shabinder 2020-12-04 14:18:13 +05:30
parent b96008a553
commit 30558a36e6
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>