Skip to content

Commit

Permalink
Downgrade dex2jar to v64
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-psi committed Jan 19, 2024
1 parent 52dfd17 commit cf03864
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.8.0"
kotlin("plugin.serialization") version "1.8.0" apply false
kotlin("jvm") version "1.7.21"
kotlin("plugin.serialization") version "1.7.21" apply false
id("org.jmailen.kotlinter") version "3.9.0" apply false
id("com.github.gmazzo.buildconfig") version "3.0.3" apply false
id("com.github.johnrengelman.shadow") version "7.1.2" apply false
Expand Down Expand Up @@ -77,7 +77,8 @@ configure(projects) {
implementation("io.github.config4k:config4k:0.4.2")

// dex2jar
val dex2jarVersion = "v76"
// Stuck at v64 because of https://github.com/ThexXTURBOXx/dex2jar/issues/27
val dex2jarVersion = "v64"
implementation("com.github.ThexXTURBOXx.dex2jar:dex-translator:$dex2jarVersion")
implementation("com.github.ThexXTURBOXx.dex2jar:dex-tools:$dex2jarVersion")

Expand Down
2 changes: 1 addition & 1 deletion inspector/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ sourceSets {
}

// should be bumped with each stable release
val inspectorVersion = "v1.4.4"
val inspectorVersion = "v1.4.5"

// counts commit count on master
val inspectorRevision = runCatching {
Expand Down

0 comments on commit cf03864

Please sign in to comment.