Created
June 9, 2021 17:39
-
-
Save varundwarkani/335a16cc617fb4a57a0f8d50ff8e5f44 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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