Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unified versions that should change together. #36

Merged
merged 3 commits into from
Mar 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
10 changes: 6 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down