mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-01-13 09:13:16 +01:00
dbdb59bbff
* There is one database for each Server * Index items are saved with a "musicFolderId" prop, which makes it possible to filter the database by musicFolder without necessarily having to query the server for it. * Databases for new Servers are created on the fly * If the user removes a server, the respective database is deleted.
15 lines
263 B
Groovy
15 lines
263 B
Groovy
apply from: bootstrap.androidModule
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
ext {
|
|
jacocoExclude = [
|
|
'**/domain/**'
|
|
]
|
|
}
|
|
|
|
dependencies {
|
|
implementation androidSupport.roomRuntime
|
|
implementation androidSupport.roomKtx
|
|
kapt androidSupport.room
|
|
}
|