Commit 3b9ea26d authored by Mygod's avatar Mygod

Fix #2679

parent 3bd8b0ed
...@@ -19,9 +19,10 @@ android { ...@@ -19,9 +19,10 @@ android {
arguments("-j${Runtime.getRuntime().availableProcessors()}") arguments("-j${Runtime.getRuntime().availableProcessors()}")
} }
javaCompileOptions.annotationProcessorOptions.arguments(mapOf( kapt.arguments {
"room.incremental" to "true", arg("room.incremental", true)
"room.schemaLocation" to "$projectDir/schemas")) arg("room.schemaLocation", "$projectDir/schemas")
}
} }
externalNativeBuild.ndkBuild.path("src/main/jni/Android.mk") externalNativeBuild.ndkBuild.path("src/main/jni/Android.mk")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment