Merge branch 'renovate/room' into 'develop'

Update room to v2.6.0

See merge request ultrasonic/ultrasonic!1138
This commit is contained in:
birdbird 2023-10-27 14:21:50 +00:00
commit 58944bb0fd
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ materialDesign = "1.10.0"
constraintLayout = "2.1.4" constraintLayout = "2.1.4"
activity = "1.8.0" activity = "1.8.0"
multidex = "2.0.1" multidex = "2.0.1"
room = "2.5.2" room = "2.6.0"
kotlin = "1.9.10" kotlin = "1.9.10"
ksp = "1.9.10-1.0.13" ksp = "1.9.10-1.0.13"
kotlinxCoroutines = "1.7.3" kotlinxCoroutines = "1.7.3"

View File

@ -91,7 +91,7 @@ interface GenericDao<T> {
*/ */
@Insert(onConflict = OnConflictStrategy.IGNORE) @Insert(onConflict = OnConflictStrategy.IGNORE)
@JvmSuppressWildcards @JvmSuppressWildcards
fun insertIgnoring(obj: List<T>?): List<Long> fun insertIgnoring(obj: List<T>): List<Long>
/** /**
* Update an object from the database. * Update an object from the database.
@ -109,7 +109,7 @@ interface GenericDao<T> {
*/ */
@Update @Update
@JvmSuppressWildcards @JvmSuppressWildcards
fun update(obj: List<T>?) fun update(obj: List<T>)
/** /**
* Delete an object from the database * Delete an object from the database