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

AndroidPlugin: handle multiple .aar.

This commit is contained in:
Cedric Beust 2015-11-10 01:55:46 -08:00
parent 7fe1a9b8aa
commit 526cc35379
3 changed files with 50 additions and 29 deletions

View file

@ -124,10 +124,10 @@ class KFiles {
return result return result
} }
fun copyRecursively(from: File, to: File) { fun copyRecursively(from: File, to: File, deleteFirst: Boolean = true) {
// Need to wait until copyRecursively supports an overwrite: Boolean = false parameter // Need to wait until copyRecursively supports an overwrite: Boolean = false parameter
// Until then, wipe everything first // Until then, wipe everything first
to.deleteRecursively() if (deleteFirst) to.deleteRecursively()
to.mkdirs() to.mkdirs()
from.copyRecursively(to) from.copyRecursively(to)
} }

View file

@ -30,13 +30,14 @@ open class RunCommand(val command: String) {
pbEnv.put(it.key, it.value) pbEnv.put(it.key, it.value)
} }
} }
val errorCode = process.waitFor() val passed = process.waitFor()//(2, TimeUnit.SECONDS)
if (errorCode != 0 && error != null) { val callSucceeded = if (passed == 0) true else false
error(fromStream(process.errorStream)) if (callSucceeded) {
} else if (errorCode == 0 && success != null){ successCb(fromStream(process.inputStream))
success(fromStream(process.inputStream)) } else {
errorCb(listOf("Time out for command $command") + fromStream(process.errorStream))
} }
return errorCode return if (callSucceeded) 0 else 1
} }

View file

@ -15,7 +15,6 @@ import com.beust.kobalt.misc.RunCommand
import com.beust.kobalt.misc.log import com.beust.kobalt.misc.log
import com.beust.kobalt.plugin.java.JavaCompiler import com.beust.kobalt.plugin.java.JavaCompiler
import com.beust.kobalt.plugin.packaging.JarUtils import com.beust.kobalt.plugin.packaging.JarUtils
import com.beust.kobalt.plugin.packaging.PackagingPlugin
import com.google.common.collect.HashMultimap import com.google.common.collect.HashMultimap
import com.google.inject.Inject import com.google.inject.Inject
import com.google.inject.Singleton import com.google.inject.Singleton
@ -95,13 +94,13 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler)
fun androidJar(project: Project): Path = fun androidJar(project: Project): Path =
Paths.get(androidHome(project), "platforms", "android-${compileSdkVersion(project)}", "android.jar") Paths.get(androidHome(project), "platforms", "android-${compileSdkVersion(project)}", "android.jar")
private fun generated(project: Project) = Paths.get(project.buildDirectory, "app", "build", "generated") private fun generated(project: Project) = Paths.get(project.buildDirectory, "generated")
private fun intermediates(project: Project) = Paths.get(project.buildDirectory, "app", "build", "intermediates") private fun intermediates(project: Project) = Paths.get(project.buildDirectory, "intermediates")
private fun aapt(project: Project) = "${androidHome(project)}/build-tools/${buildToolsVersion(project)}/aapt" private fun aapt(project: Project) = "${androidHome(project)}/build-tools/${buildToolsVersion(project)}/aapt"
private fun temporaryApk(project: Project, flavor: String) private fun temporaryApk(project: Project, flavor: String)
= KFiles.joinFileAndMakeDir(project.buildDirectory!!, "intermediates", "res", "resources-$flavor.ap_") = KFiles.joinFileAndMakeDir(intermediates(project).toFile().path, "resources", "resources-$flavor.ap_")
private fun apk(project: Project, flavor: String) private fun apk(project: Project, flavor: String)
= KFiles.joinFileAndMakeDir(project.buildDirectory!!, "outputs", "apk", "app-$flavor.apk") = KFiles.joinFileAndMakeDir(project.buildDirectory!!, "outputs", "apk", "app-$flavor.apk")
@ -110,9 +109,11 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler)
runBefore = arrayOf("compile"), runAfter = arrayOf("clean")) runBefore = arrayOf("compile"), runAfter = arrayOf("clean"))
fun taskGenerateRFile(project: Project): TaskResult { fun taskGenerateRFile(project: Project): TaskResult {
val intermediates = intermediates(project)
val resDir = KFiles.joinDir(intermediates.toFile().path, "res", flavor)
explodeAarFiles(project, intermediates, File(resDir))
val generated = generated(project) val generated = generated(project)
explodeAarFiles(project, generated) generateR(project, generated, aapt(project), resDir)
generateR(project, generated, aapt(project))
return TaskResult() return TaskResult()
} }
@ -131,7 +132,7 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler)
fun call(args: List<String>) = run(arrayListOf(aaptCommand) + args) fun call(args: List<String>) = run(arrayListOf(aaptCommand) + args)
} }
private fun generateR(project: Project, generated: Path, aapt: String) { private fun generateR(project: Project, generated: Path, aapt: String, resDir: String) {
val compileSdkVersion = compileSdkVersion(project) val compileSdkVersion = compileSdkVersion(project)
val androidJar = Paths.get(androidHome(project), "platforms", "android-$compileSdkVersion", "android.jar") val androidJar = Paths.get(androidHome(project), "platforms", "android-$compileSdkVersion", "android.jar")
val applicationId = configurations[project.name]?.applicationId!! val applicationId = configurations[project.name]?.applicationId!!
@ -142,7 +143,8 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler)
AaptCommand(project, aapt, "crunch").call(listOf( AaptCommand(project, aapt, "crunch").call(listOf(
"-v", "-v",
"-S", "app/src/main/res", "-S", "app/src/main/res",//resourceDir,
"-S", resDir,
"-C", crunchedPngDir "-C", crunchedPngDir
)) ))
@ -151,8 +153,8 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler)
"--no-crunch", "--no-crunch",
"-I", androidJar.toString(), "-I", androidJar.toString(),
"-M", manifest.toString(), "-M", manifest.toString(),
"-S", crunchedPngDir,
"-S", "app/src/main/res", "-S", "app/src/main/res",
"-S", resDir,
// where to find more assets // where to find more assets
"-A", KFiles.joinAndMakeDir(intermediates(project).toString(), "assets", flavor), "-A", KFiles.joinAndMakeDir(intermediates(project).toString(), "assets", flavor),
"-m", // create directory "-m", // create directory
@ -161,6 +163,7 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler)
"-F", temporaryApk(project, flavor), "-F", temporaryApk(project, flavor),
"--debug-mode", "--debug-mode",
"-0", "apk", "-0", "apk",
"--auto-add-overlay",
"--custom-package", applicationId, "--custom-package", applicationId,
"--output-text-symbols", KFiles.joinAndMakeDir(intermediates(project).toString(), "symbol", flavor)) "--output-text-symbols", KFiles.joinAndMakeDir(intermediates(project).toString(), "symbol", flavor))
) )
@ -175,16 +178,32 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler)
* Extract all the .aar files found in the dependencies and add the android.jar to classpathEntries, * Extract all the .aar files found in the dependencies and add the android.jar to classpathEntries,
* which will be added to the classpath at compile time * which will be added to the classpath at compile time
*/ */
private fun explodeAarFiles(project: Project, outputDir: Path) { private fun explodeAarFiles(project: Project, outputDir: Path, resDir: File) {
project.compileDependencies.filter { project.compileDependencies.filter {
it.jarFile.get().name.endsWith(".aar") it.jarFile.get().name.endsWith(".aar")
}.forEach { }.forEach {
log(2, "Exploding ${it.jarFile.get()}")
val mavenId = MavenId(it.id) val mavenId = MavenId(it.id)
val destDir = Paths.get(outputDir.toFile().absolutePath, mavenId.artifactId, mavenId.version).toFile() val destDir = Paths.get(outputDir.toFile().absolutePath, "exploded-aar", mavenId.groupId,
mavenId.artifactId, mavenId.version)
.toFile()
log(2, "Exploding ${it.jarFile.get()} to $destDir")
JarUtils.extractJarFile(it.jarFile.get(), destDir) JarUtils.extractJarFile(it.jarFile.get(), destDir)
val classesJar = Paths.get(destDir.absolutePath, "classes.jar") val classesJar = Paths.get(destDir.absolutePath, "classes.jar")
// Add the classses.jar of this .aar to the classpath entries (which are returned via IClasspathContributor)
classpathEntries.put(project.name, FileDependency(classesJar.toFile().absolutePath)) classpathEntries.put(project.name, FileDependency(classesJar.toFile().absolutePath))
// Also add all the jar files found in the libs/ directory
File(destDir, "libs").let { libsDir ->
if (libsDir.exists()) {
libsDir.listFiles().filter { it.name.endsWith(".jar")}.forEach {
classpathEntries.put(project.name, FileDependency(it.absolutePath))
}
}
}
// Copy all the resources from this aar into the same intermediate directory
log(2, "Copying the resources to $resDir")
KFiles.copyRecursively(destDir.resolve("res"), resDir, deleteFirst = false)
} }
} }
@ -197,10 +216,10 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler)
} }
companion object { companion object {
const val TASK_GENERATE = "generateDex" const val TASK_GENERATE_DEX = "generateDex"
} }
@Task(name = TASK_GENERATE, description = "Generate the dex file", alwaysRunAfter = arrayOf("compile")) @Task(name = TASK_GENERATE_DEX, description = "Generate the dex file", runAfter = arrayOf("compile"))
fun taskGenerateDex(project: Project): TaskResult { fun taskGenerateDex(project: Project): TaskResult {
// //
// Call dx to generate classes.dex // Call dx to generate classes.dex
@ -209,20 +228,21 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler)
val dx = "${androidHome(project)}/build-tools/$buildToolsDir/dx" + val dx = "${androidHome(project)}/build-tools/$buildToolsDir/dx" +
if (OperatingSystem.current().isWindows()) ".bat" else "" if (OperatingSystem.current().isWindows()) ".bat" else ""
val buildDir = context.pluginProperties.get("java", JvmCompilerPlugin.BUILD_DIR) val buildDir = context.pluginProperties.get("java", JvmCompilerPlugin.BUILD_DIR)
val libsDir = context.pluginProperties.getString("packaging", PackagingPlugin.LIBS_DIR) val classesDexDir = KFiles.joinDir(intermediates(project).toFile().path, "dex", flavor)
File(libsDir.toString()).mkdirs() File(classesDexDir).mkdirs()
val classesDex = "classes.dex" val classesDex = "classes.dex"
val classesDexDir = KFiles.joinAndMakeDir(libsDir, "intermediates", "dex", flavor)
val outClassesDex = KFiles.joinDir(classesDexDir, classesDex) val outClassesDex = KFiles.joinDir(classesDexDir, classesDex)
RunCommand(dx).run(listOf("--dex", "--output", outClassesDex, buildDir!!.toString())) RunCommand(dx).run(listOf("--dex", "--output", outClassesDex, buildDir!!.toString()))
// //
// Add classes.dex to existing .ap_ // Add classes.dex to existing .ap_
// Because aapt doesn't handle directory moving, we need to cd to classes.dex's directory so
// that classes.dex ends up in the root directory of the .ap_.
// //
AaptCommand(project, aapt(project), "add").apply { AaptCommand(project, aapt(project), "add").apply {
directory = File(outClassesDex).parentFile directory = File(outClassesDex).parentFile
}.call(listOf("-v", KFiles.joinDir("../../../../..", temporaryApk(project, flavor)), classesDex)) }.call(listOf("-v", KFiles.joinDir(File(temporaryApk(project, flavor)).absolutePath), classesDex))
return TaskResult() return TaskResult()
} }
@ -234,7 +254,7 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler)
* jarsigner -keystore ~/.android/debug.keystore -storepass android -keypass android -signedjar a.apk a.ap_ * jarsigner -keystore ~/.android/debug.keystore -storepass android -keypass android -signedjar a.apk a.ap_
* androiddebugkey * androiddebugkey
*/ */
@Task(name = "signApk", description = "Sign the apk file", runAfter = arrayOf(TASK_GENERATE), @Task(name = "signApk", description = "Sign the apk file", runAfter = arrayOf(TASK_GENERATE_DEX),
runBefore = arrayOf("assemble")) runBefore = arrayOf("assemble"))
fun signApk(project: Project): TaskResult { fun signApk(project: Project): TaskResult {
val apk = apk(project, flavor) val apk = apk(project, flavor)
@ -256,9 +276,9 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler)
// IClasspathContributor // IClasspathContributor
override fun entriesFor(project: Project?): Collection<IClasspathDependency> { override fun entriesFor(project: Project?): Collection<IClasspathDependency> {
return if (project != null) { return if (project != null) {
classpathEntries.get(project.name) ?: listOf() classpathEntries.get(project.name) ?: emptyList()
} else { } else {
listOf() emptyList()
} }
} }