Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
skylot committed Dec 16, 2023
1 parent 8db70ee commit 68a99c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jadx-plugins/jadx-java-convert/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ dependencies {

implementation(project(":jadx-plugins:jadx-dex-input"))
implementation("com.jakewharton.android.repackaged:dalvik-dx:11.0.0_r3")
implementation("com.android.tools:r8:8.1.72")
implementation("com.android.tools:r8:8.2.33")

implementation("org.ow2.asm:asm:9.6")
}
2 changes: 1 addition & 1 deletion jadx-plugins/jadx-kotlin-metadata/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
dependencies {
api(project(":jadx-core"))

implementation("org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.7.0")
implementation("org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.8.0")

testImplementation(project(":jadx-core").dependencyProject.sourceSets.test.get().output)
testImplementation("org.apache.commons:commons-lang3:3.14.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@ private fun IAnnotation.getParamAsString(paramName: String): String? {
}

fun ClassNode.getKotlinClassMetadata(): KotlinClassMetadata? {
return getMetadata()?.let(KotlinClassMetadata::read)
return getMetadata()?.let(KotlinClassMetadata::readLenient)
}

0 comments on commit 68a99c5

Please sign in to comment.