Last active
April 13, 2018 19:06
-
-
Save douglasiacovelli/c1ec705e67419fde8798aa6d88c7d340 to your computer and use it in GitHub Desktop.
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
| dependencies { | |
| ... | |
| } | |
| //This step below fixes the issues | |
| afterEvaluate { | |
| android.applicationVariants.all { | |
| def name = it.name.capitalize() | |
| tasks["kapt${name}Kotlin"].dependsOn("transformDataBindingWithDataBindingMergeArtifactsFor${name}") | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment