mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2024-11-10 01:01:56 +01:00
fix: broken gradle task
This commit is contained in:
parent
c34c1be21f
commit
28e3f554ea
1 changed files with 17 additions and 8 deletions
|
@ -22,18 +22,27 @@ dependencies {
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks {
|
tasks {
|
||||||
register<Exec>("generateDex") {
|
register<DefaultTask>("generateDex") {
|
||||||
description = "Generate dex files from build"
|
description = "Generate dex files from build"
|
||||||
dependsOn(build)
|
dependsOn(build)
|
||||||
|
|
||||||
val androidHome = System.getenv("ANDROID_HOME") ?: throw GradleException("ANDROID_HOME not found")
|
doLast {
|
||||||
val d8 = "${androidHome}/build-tools/32.0.0/d8"
|
val androidHome = System.getenv("ANDROID_HOME") ?: throw GradleException("ANDROID_HOME not found")
|
||||||
val input = build.get().outputs.files.singleFile.absolutePath
|
val d8 = "${androidHome}/build-tools/32.0.0/d8"
|
||||||
val output = input.replace(".jar", ".dex")
|
val input = build.get().outputs.files.singleFile.absolutePath
|
||||||
|
val output = input.replace(".jar", ".dex")
|
||||||
|
val work = File("${buildDir}/libs")
|
||||||
|
|
||||||
workingDir = File("${buildDir}/libs")
|
exec {
|
||||||
commandLine = listOf(d8, input)
|
workingDir = work
|
||||||
commandLine = listOf("mv", "*.dex", output)
|
commandLine = listOf(d8, input)
|
||||||
|
}
|
||||||
|
|
||||||
|
exec {
|
||||||
|
workingDir = work
|
||||||
|
commandLine = listOf("mv", "*.dex", output)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// Dummy task to fix the Gradle semantic-release plugin.
|
// Dummy task to fix the Gradle semantic-release plugin.
|
||||||
// Remove this if you forked it to support building only.
|
// Remove this if you forked it to support building only.
|
||||||
|
|
Loading…
Reference in a new issue