Skip to content

Instantly share code, notes, and snippets.

@stepango
Created October 14, 2019 01:05
Show Gist options
  • Save stepango/1f98c45f7f83d72fb43b4cd1dff01a83 to your computer and use it in GitHub Desktop.
Save stepango/1f98c45f7f83d72fb43b4cd1dff01a83 to your computer and use it in GitHub Desktop.
KAPT options
subprojects {
afterEvaluate {
if (project.hasProperty('kapt')) kapt {
javacOptions {
option("-source", "8")
option("-target", "8")
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment