Skip to content

Commit

Permalink
fix: Fix r8 overriding DexJar classpath
Browse files Browse the repository at this point in the history
  • Loading branch information
phinner committed Nov 14, 2024
1 parent 81f13ad commit 3c4ef05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/com/xpdustry/toxopid/task/DexJar.kt
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ public open class DexJar : DefaultTask() {
buildList {
add("--lib")
add(platform.absolutePathString())
classpath.forEach {
this@DexJar.classpath.forEach { file ->
add("--classpath")
add(it.toPath().absolutePathString())
add(file.absolutePath)
}
add("--min-api")
add(minSdkVersion.get().toString())
Expand Down

0 comments on commit 3c4ef05

Please sign in to comment.