Bump room from 2.4.3 to 2.5.0 (#2105)

This commit is contained in:
dependabot[bot] 2023-01-14 15:30:53 +00:00 committed by GitHub
parent 95cf521f63
commit 6df3f22c7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -179,7 +179,7 @@ huaweiPublish {
ext {
work_manager = "2.7.1"
android_hilt = "1.0.0"
room = "2.4.3"
room = "2.5.0"
chucker = "3.5.2"
mockk = "1.13.3"
coroutines = "1.6.4"

View File

@ -1,7 +1,6 @@
package io.github.wulkanowy.data.db.dao
import androidx.room.*
import androidx.room.OnConflictStrategy.ABORT
import io.github.wulkanowy.data.db.entities.Student
import io.github.wulkanowy.data.db.entities.StudentNickAndAvatar
import io.github.wulkanowy.data.db.entities.StudentWithSemesters
@ -11,7 +10,7 @@ import javax.inject.Singleton
@Dao
abstract class StudentDao {
@Insert(onConflict = ABORT)
@Insert(onConflict = OnConflictStrategy.ABORT)
abstract suspend fun insertAll(student: List<Student>): List<Long>
@Delete