Skip to content

Commit

Permalink
fix: broken gradle task
Browse files Browse the repository at this point in the history
  • Loading branch information
Sculas committed Jun 16, 2022
1 parent a234c6c commit 4d07961
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ tasks {
doLast {
val androidHome = System.getenv("ANDROID_HOME") ?: throw GradleException("ANDROID_HOME not found")
val d8 = "${androidHome}/build-tools/32.0.0/d8"
val input = build.get().outputs.files.singleFile.absolutePath
val input = configurations.archives.get().allArtifacts.files.files.first().absolutePath
val output = input.replace(".jar", ".dex")
val work = File("${buildDir}/libs")

Expand Down

0 comments on commit 4d07961

Please sign in to comment.