diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f8e94af..c8b296d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,8 +6,9 @@ on: release: types: [released] -#concurrency: -# cancel-in-progress: true +concurrency: + group: ${{ github.ref }} + cancel-in-progress: true jobs: publish: diff --git a/README.md b/README.md index 2afb97b..9efe287 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ You can include the library from either Maven Central or Jitpack. You can include the library in the common source set like this: ```kotlin dependencies { - implementation("io.github.kotlingeekdev:rhodium:1.0-beta-10") + implementation("io.github.kotlingeekdev:rhodium:1.0-beta-11") } ``` @@ -74,7 +74,7 @@ then, in your module's `build.gradle(.kts)`, you need to add: // build.gradle.kts dependencies { //... - implementation("com.github.KotlinGeekDev.Rhodium:rhodium:1.0-beta-10") + implementation("com.github.KotlinGeekDev.Rhodium:rhodium:1.0-beta-11") } @@ -85,7 +85,7 @@ If you're including it in an Android app, you can just add: // app/build.gradle.kts dependencies { //... - implementation("com.github.KotlinGeekDev.Rhodium:rhodium-android:1.0-beta-10") + implementation("com.github.KotlinGeekDev.Rhodium:rhodium-android:1.0-beta-11") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 7c4082f..8f3942e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -31,7 +31,7 @@ allprojects { val isJitpack = System.getenv("JITPACK") == "true" group = "io.github.kotlingeekdev" - version = "1.0-beta-10" + version = "1.0-beta-11" // val javadocJar = tasks.register("javadocJar") { diff --git a/rhodium-core/build.gradle.kts b/rhodium-core/build.gradle.kts index 7841d79..6a23dbb 100644 --- a/rhodium-core/build.gradle.kts +++ b/rhodium-core/build.gradle.kts @@ -220,16 +220,16 @@ android { aarMetadata { } - isMinifyEnabled = false + isMinifyEnabled = true } } compileOptions { - isCoreLibraryDesugaringEnabled = true + isCoreLibraryDesugaringEnabled = false sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } dependencies { - coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.3") +// coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.3") testImplementation("junit:junit:4.13.2") androidTestImplementation("androidx.test.ext:junit:1.2.1") androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")