diff --git a/gradle.properties b/gradle.properties index 1cda704..d8e4b30 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,5 +2,5 @@ kotlin.code.style=official android.useAndroidX=true org.gradle.jvmargs=-Xmx4g -LIBRARY_VERSION=0.1.2 +LIBRARY_VERSION=0.1.3 GROUP=co.touchlab.kmmbridgespmquickstart diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 1116332..51555e4 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -6,7 +6,7 @@ compileSdk = "34" # Dependencies kotlin = "1.9.23" -kmmBridge = "1.0.0-alpha1" +kmmBridge = "1.0.5-SNAPSHOT" android-gradle-plugin = "8.2.0" coroutines = "1.8.0" kotlinx-datetime = "0.5.0" diff --git a/settings.gradle.kts b/settings.gradle.kts index a10ac11..88cfa8c 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -3,7 +3,7 @@ pluginManagement { google() gradlePluginPortal() mavenCentral() - mavenLocal() + maven(url = "https://oss.sonatype.org/content/repositories/snapshots") } } @@ -12,7 +12,7 @@ dependencyResolutionManagement { repositories { google() mavenCentral() - mavenLocal() + maven(url = "https://oss.sonatype.org/content/repositories/snapshots") } }