Skip to content

Commit 65a8002

Browse files
authored
Merge pull request #13 from evilya/main
Bump dependencies versions
2 parents b6f6f18 + 7cebcab commit 65a8002

File tree

6 files changed

+13
-28
lines changed

6 files changed

+13
-28
lines changed

README.md

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,4 @@
1-
### Source code for the ["Get started with Kotlin Multiplatform" tutorial](https://www.jetbrains.com/help/kotlin-multiplatform-dev/multiplatform-getting-started.html)
2-
3-
This is a Kotlin Multiplatform project targeting Android, iOS.
4-
5-
* `/composeApp` is for code that will be shared across your Compose Multiplatform applications.
6-
It contains several subfolders:
7-
- `commonMain` is for code that’s common for all targets.
8-
- Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name.
9-
For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app,
10-
`iosMain` would be the right folder for such calls.
1+
[![Official project](https://jb.gg/badges/official-plastic.svg)](https://github.com/JetBrains#jetbrains-on-github)
2+
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
113

12-
* `/iosApp` contains iOS applications. Even if you’re sharing your UI with Compose Multiplatform,
13-
you need this entry point for your iOS app. This is also where you should add SwiftUI code for your project.
14-
15-
* `/shared` is for the code that will be shared between all targets in the project.
16-
The most important subfolder is `commonMain`. If preferred, you can add code to the platform-specific folders here
17-
too.
18-
19-
Learn more about [Kotlin Multiplatform](https://www.jetbrains.com/help/kotlin-multiplatform-dev/get-started.html)
4+
### Source code for the ["Get started with Kotlin Multiplatform" tutorial](https://www.jetbrains.com/help/kotlin-multiplatform-dev/multiplatform-getting-started.html)

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ plugins {
66
alias(libs.plugins.composeMultiplatform) apply false
77
alias(libs.plugins.composeCompiler) apply false
88
alias(libs.plugins.kotlinMultiplatform) apply false
9-
id("com.google.devtools.ksp").version("2.1.21-2.0.1").apply(false)
10-
id("com.rickclephas.kmp.nativecoroutines").version("1.0.0-ALPHA-43").apply(false)
9+
id("com.google.devtools.ksp").version("2.2.0-2.0.2").apply(false)
10+
id("com.rickclephas.kmp.nativecoroutines").version("1.0.0-ALPHA-45").apply(false)
1111
}

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ android-compileSdk = "35"
44
android-minSdk = "24"
55
android-targetSdk = "35"
66
androidx-activity = "1.10.1"
7-
androidx-appcompat = "1.7.0"
7+
androidx-appcompat = "1.7.1"
88
androidx-constraintlayout = "2.2.1"
99
androidx-core = "1.16.0"
1010
androidx-espresso = "3.6.1"
11-
androidx-lifecycle = "2.9.0"
11+
androidx-lifecycle = "2.9.1"
1212
androidx-testExt = "1.2.1"
13-
composeMultiplatform = "1.8.1"
13+
composeMultiplatform = "1.8.2"
1414
junit = "4.13.2"
15-
kotlin = "2.1.21"
15+
kotlin = "2.2.0"
1616

1717
[libraries]
1818
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" }

iosApp/iosApp.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@
393393
repositoryURL = "https://github.com/rickclephas/KMP-NativeCoroutines.git";
394394
requirement = {
395395
kind = exactVersion;
396-
version = "1.0.0-ALPHA-43";
396+
version = "1.0.0-ALPHA-45";
397397
};
398398
};
399399
/* End XCRemoteSwiftPackageReference section */

iosApp/iosApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shared/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
44
plugins {
55
alias(libs.plugins.kotlinMultiplatform)
66
alias(libs.plugins.androidLibrary)
7-
kotlin("plugin.serialization") version "2.1.21"
7+
kotlin("plugin.serialization") version "2.2.0"
88
id("com.google.devtools.ksp")
99
id("com.rickclephas.kmp.nativecoroutines")
1010
}

0 commit comments

Comments
 (0)