gradle: fix Room schema warning

This commit is contained in:
dece 2022-01-16 14:24:32 +01:00
parent 51d1844ba0
commit ef8c78177e

View file

@ -14,6 +14,12 @@ android {
versionCode 1 versionCode 1
versionName "0.1.0" versionName "0.1.0"
javaCompileOptions {
annotationProcessorOptions {
arguments += ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }
buildFeatures { buildFeatures {