Skip to content

Instantly share code, notes, and snippets.

@varundwarkani
Created June 9, 2021 17:39
Show Gist options
  • Save varundwarkani/335a16cc617fb4a57a0f8d50ff8e5f44 to your computer and use it in GitHub Desktop.
Save varundwarkani/335a16cc617fb4a57a0f8d50ff8e5f44 to your computer and use it in GitHub Desktop.
//Java
javaCompileOptions {
annotationProcessorOptions {
arguments += ["room.schemaLocation": "$projectDir/schemas".toString()]
}
}
//Kotlin
kapt {
arguments {
arg("room.schemaLocation", "$projectDir/schemas")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment