Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e075c35
Merge pull request #25 from Kotlin/v2_update_main
pahill Jul 1, 2024
9d34ff0
Update Gradle to 8.10
adam-enko Sep 2, 2024
44ccea1
rename 'agp' to 'android-gradlePlugin'
adam-enko Sep 2, 2024
ad75b04
tidy gitignore
adam-enko Sep 2, 2024
16091fb
tidy settings.gradle.kts
adam-enko Sep 2, 2024
f6209a2
make IJ use JDK 17
adam-enko Sep 2, 2024
0e80143
tidy build.gradle.kts
adam-enko Sep 2, 2024
fbd0176
tidy README.md
adam-enko Sep 2, 2024
9dedf74
bump Kotlin to 2.0.20
adam-enko Sep 2, 2024
34120b3
replace `kotlinOptions {}` with `kotlin.compilerOptions {}`
adam-enko Sep 2, 2024
0cc681b
remove plugins from root `build.gradle.kts` - the versions are instea…
adam-enko Sep 2, 2024
99bbadb
Merge pull request #28 from Kotlin/adam/KT-71125-update-build-config
adam-enko Sep 3, 2024
1aaed07
Use version catalog to apply plugins in `:app`
adam-enko Sep 3, 2024
7bcbcba
Merge pull request #29 from Kotlin/adam/fix/use-version-catalog-for-p…
adam-enko Sep 3, 2024
ac91ae4
Add back plugins in the root project
antohaby Sep 3, 2024
6df9537
Downgrade gradle to 8.9 as Kotlin Multiplatform 2.0.20 doesn't suppor…
antohaby Sep 3, 2024
707ac47
update Gradle wrapper jar
adam-enko Sep 4, 2024
2c8f336
Add plugins back to the root project and adjust the Gradle version
zamulla Sep 5, 2024
cfe1749
Create GitHub Action to check `gradle build` works
adam-enko Sep 5, 2024
173e121
Merge pull request #32 from Kotlin/adam/add-gradle-build-gha
adam-enko Sep 5, 2024
1018971
Add Kotlin Multiplatform module and update project configs
pahill Mar 4, 2025
c55d6db
Switch Android codebase to use shared module dependencies
pahill Mar 4, 2025
6bdb5a3
Switch Android codebase to use shared module dependencies
pahill Mar 4, 2025
eca8186
Merge conflict resolutions etc.
pahill Mar 4, 2025
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
Prev Previous commit
Next Next commit
Use version catalog to apply plugins in :app
  • Loading branch information
adam-enko committed Sep 3, 2024
commit 1aaed07897faad497e80c45b0ce6fcfe6189f33a
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_1_8

plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
alias(libs.plugins.androidApplication)
alias(libs.plugins.kotlinAndroid)
}

kotlin {
Expand Down
1 change: 1 addition & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,5 @@ androidApplication = { id = "com.android.application", version.ref = "android-gr
androidLibrary = { id = "com.android.library", version.ref = "android-gradlePlugin" }
jetbrainsCompose = { id = "org.jetbrains.compose", version.ref = "compose-plugin" }
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }