Created
October 14, 2019 01:05
-
-
Save stepango/1f98c45f7f83d72fb43b4cd1dff01a83 to your computer and use it in GitHub Desktop.
KAPT options
This file contains hidden or 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
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