Export schema

This commit is contained in:
tzugen 2021-06-20 16:45:34 +02:00
parent c99c4478f2
commit fa94cd24da
No known key found for this signature in database
GPG Key ID: 61E9C34BC10EC930
1 changed files with 7 additions and 0 deletions

View File

@ -61,6 +61,13 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kapt {
arguments {
arg("room.schemaLocation", "$buildDir/schemas".toString())
}
}
}
tasks.withType(Test) {