Skip to content

Commit

Permalink
Fix #2679
Browse files Browse the repository at this point in the history
  • Loading branch information
Mygod committed Apr 13, 2021
1 parent 3bd8b0e commit 3b9ea26
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ android {
arguments("-j${Runtime.getRuntime().availableProcessors()}")
}

javaCompileOptions.annotationProcessorOptions.arguments(mapOf(
"room.incremental" to "true",
"room.schemaLocation" to "$projectDir/schemas"))
kapt.arguments {
arg("room.incremental", true)
arg("room.schemaLocation", "$projectDir/schemas")
}
}

externalNativeBuild.ndkBuild.path("src/main/jni/Android.mk")
Expand Down

0 comments on commit 3b9ea26

Please sign in to comment.