chore: update dependencies

This commit is contained in:
Skylot
2023-12-16 16:05:51 +00:00
parent 8db70ee7a5
commit 68a99c5410
3 changed files with 3 additions and 3 deletions
@@ -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")
}
@@ -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")
@@ -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)
}