diff --git a/README.md b/README.md index 90a0a06..93b4ec5 100644 --- a/README.md +++ b/README.md @@ -89,5 +89,5 @@ make changes and raise a pull request. ### License -This project is distributed under the terms of the MIT License. See [LICENSE.md](LICENSE) for +This project is distributed under the terms of the MIT License. See [LICENSE](LICENSE) for details. diff --git a/build.gradle.kts b/build.gradle.kts index 5b57a8d..0c86293 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -2,10 +2,12 @@ import java.util.* import org.jlleitschuh.gradle.ktlint.KtlintExtension plugins { - id("com.android.application") version "8.3.0" apply false - id("org.jetbrains.kotlin.android") version "1.9.22" apply false - id("com.android.library") version "8.3.0" apply false - kotlin("multiplatform") version "1.9.22" apply false + val androidVersion = "8.3.0" + val kotlinAndroidVersion = "1.9.22" + id("com.android.application") version androidVersion apply false + id("org.jetbrains.kotlin.android") version kotlinAndroidVersion apply false + id("com.android.library") version androidVersion apply false + kotlin("multiplatform") version kotlinAndroidVersion apply false id("org.jlleitschuh.gradle.ktlint") version "12.1.0" id("io.github.gradle-nexus.publish-plugin") version "2.0.0-rc-2" }