Skip to content

Commit 059e8b5

Browse files
CopilotiBotPeaches
andauthored
Fix build output jar naming to use underscores (apktool_*.jar) (#4120)
* Initial plan * Fix build to produce apktool_*.jar (underscore) matching wrapper script expectations Agent-Logs-Url: https://github.com/iBotPeaches/Apktool/sessions/28737485-afd4-427f-87d0-9eb8bc2381bf Co-authored-by: iBotPeaches <611784+iBotPeaches@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: iBotPeaches <611784+iBotPeaches@users.noreply.github.com>
1 parent 2bb3833 commit 059e8b5

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,4 +122,4 @@ jobs:
122122
uses: actions/upload-artifact@v7
123123
with:
124124
name: apktool.jar
125-
path: brut.apktool/apktool-cli/build/libs/apktool-v*
125+
path: brut.apktool/apktool-cli/build/libs/apktool_v*

brut.apktool/apktool-cli/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ tasks.register<JavaExec>("proguard") {
7171
val originalJar = shadowJar.map { it.outputs.files.singleFile }
7272

7373
inputs.files(originalJar, proguardRules)
74-
outputs.file("build/libs/apktool-$apktoolVersion.jar")
74+
outputs.file("build/libs/apktool_$apktoolVersion.jar")
7575

7676
classpath(r8)
7777
mainClass.set("com.android.tools.r8.R8")

0 commit comments

Comments
 (0)