From 18e7cc84350cdd44b1face0ca95b157de834b2b7 Mon Sep 17 00:00:00 2001 From: James Hamilton Date: Mon, 3 Jul 2023 16:29:52 +0200 Subject: [PATCH] Update ProGuardCORE version --- kmp-cli/build.gradle | 3 ++- kmp-library/build.gradle | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/kmp-cli/build.gradle b/kmp-cli/build.gradle index f725eca..46da880 100644 --- a/kmp-cli/build.gradle +++ b/kmp-cli/build.gradle @@ -36,7 +36,8 @@ jar { dependencies { implementation project(path: ":kmp-library") - implementation('com.github.Guardsquare:proguard-core:2f57960374') + implementation('com.guardsquare:proguard-core:9.0.10') + implementation('com.guardsquare:proguard-core-android:9.0.10') // For some string utils. implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.0' diff --git a/kmp-library/build.gradle b/kmp-library/build.gradle index e72fd32..c1cb292 100644 --- a/kmp-library/build.gradle +++ b/kmp-library/build.gradle @@ -24,7 +24,7 @@ test { } dependencies { - api('com.github.Guardsquare:proguard-core:2f57960374') + api('com.guardsquare:proguard-core:9.0.10') testImplementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.0-RC" testImplementation "org.jetbrains.kotlin:kotlin-reflect:1.9.0-RC" @@ -34,7 +34,7 @@ dependencies { testImplementation 'io.kotest:kotest-property-jvm:5.4.2' // for kotest property test testImplementation 'io.mockk:mockk:1.12.8' // for mocking - testImplementation(testFixtures("com.guardsquare:proguard-core:9.0.9")) + testImplementation(testFixtures("com.guardsquare:proguard-core:9.0.10")) } publishing {