1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-27 00:38:11 -07:00

[GITHUB-205] Fix flavor tasks.

Fixes https://github.com/cbeust/kobalt/issues/205
This commit is contained in:
Cedric Beust 2016-05-19 05:36:49 -08:00
parent 0a98317bb8
commit f4f95c0da7
3 changed files with 1 additions and 13 deletions

View file

@ -49,7 +49,7 @@ class PackagingPlugin @Inject constructor(val dependencyManager : DependencyMana
super.apply(project, context)
project.projectProperties.put(LIBS_DIR, KFiles.libsDir(project))
taskContributor.addVariantTasks(this, project, context, "assemble", group = "build",
runAfter = listOf ("compile"),
dependsOn = listOf("compile"),
runTask = { doTaskAssemble(project) })
}