Skip to content

Commit

Permalink
fix: require java11+ for r8
Browse files Browse the repository at this point in the history
  • Loading branch information
iBotPeaches committed Apr 5, 2024
1 parent 0624892 commit b44ebf8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions brut.apktool/apktool-cli/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ val shadowJar = tasks.create("shadowJar", Jar::class) {
tasks.register<JavaExec>("proguard") {
dependsOn("shadowJar")

onlyIf {
JavaVersion.current().isJava11Compatible
}

val proguardRules = file("proguard-rules.pro")
val originalJar = shadowJar.outputs.files.singleFile

Expand Down

0 comments on commit b44ebf8

Please sign in to comment.