mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 16:28:12 -07:00
Fix bogus dependency.
This commit is contained in:
parent
821279858c
commit
ea7c4abcc9
1 changed files with 1 additions and 2 deletions
|
@ -313,8 +313,7 @@ public class AndroidPlugin @Inject constructor(val javaCompiler: JavaCompiler, v
|
|||
return TaskResult()
|
||||
}
|
||||
|
||||
@Task(name = "install", description = "Install the apk file", runAfter = arrayOf(TASK_GENERATE_DEX),
|
||||
runBefore = arrayOf("assemble"))
|
||||
@Task(name = "install", description = "Install the apk file", runAfter = arrayOf(TASK_GENERATE_DEX, "assemble"))
|
||||
fun taskInstall(project: Project): TaskResult {
|
||||
val apk = apk(project, context.variant.shortArchiveName)
|
||||
RunCommand(adb(project)).useErrorStreamAsErrorIndicator(false).run(args = listOf(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue