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

Forgot to add classes to classes.dex.

This commit is contained in:
Cedric Beust 2015-11-20 21:58:36 -08:00
parent 760e849d41
commit ba7c673b71

View file

@ -230,7 +230,8 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler)
val classesDex = "classes.dex"
val outClassesDex = KFiles.joinDir(classesDexDir, classesDex)
val args = listOf("--dex", "--output", outClassesDex)
val args = listOf("--dex", "--output", outClassesDex,
project.projectProperties.getString(JvmCompilerPlugin.BUILD_DIR)!!)
val otherArgs =
project.dependencies?.let {
it.dependencies.map {