mirror of
https://gitlab.com/ultrasonic/ultrasonic.git
synced 2025-04-18 18:17:43 +03:00
Merge branch 'renovate/room' into 'develop'
Update room to v2.6.0 See merge request ultrasonic/ultrasonic!1138
This commit is contained in:
commit
58944bb0fd
@ -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"
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user