Skip to content

Commit a7e2dcf

Browse files
authored
Merge pull request #162 from joreilly/dependency_updates
dependency updates
2 parents af1e4e7 + 54c07c4 commit a7e2dcf

File tree

6 files changed

+29
-15
lines changed

6 files changed

+29
-15
lines changed

compose-web/build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ kotlin {
1616
browser {
1717
commonWebpackConfig {
1818
outputFileName = "StarWars.js"
19+
20+
devServer = (devServer ?: KotlinWebpackConfig.DevServer()).apply {
21+
static = (static ?: mutableListOf()).apply {
22+
// Serve sources to debug inside browser
23+
add(project.projectDir.path)
24+
add(project.rootDir.path)
25+
}
26+
}
1927
}
2028
}
2129

gradle.properties

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@
1212
# org.gradle.parallel=true
1313
#Thu Dec 29 19:55:36 GMT 2022
1414
kotlin.code.style=official
15-
xcodeproj=./StarWarsiOS
15+
16+
xcodeproj=./iosApp
17+
1618
kotlin.mpp.stability.nowarn=true
1719
org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
1820
kotlin.mpp.androidSourceSetLayoutVersion=2

gradle/libs.versions.toml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
[versions]
2-
kotlin = "2.0.0-RC2"
3-
ksp = "2.0.0-RC2-1.0.20"
4-
coroutines = "1.8.0"
2+
kotlin = "2.0.0-RC3"
3+
ksp = "2.0.0-RC3-1.0.20"
4+
coroutines = "1.8.1"
55
androidGradlePlugin = "8.4.0"
6-
koin = "3.6.0-alpha3"
7-
koinCompose = "1.2.0-alpha3"
6+
koin = "3.6.0-Beta4"
7+
koinCompose = "3.6.0-Beta4"
8+
koinComposeMultiplatform = "1.2.0-Beta4"
89
apollo = "4.0.0-beta.6"
9-
kmpNativeCoroutines = "1.0.0-ALPHA-28-kotlin-2.0.0-RC2"
10+
kmpNativeCoroutines = "1.0.0-ALPHA-30-kotlin-2.0.0-RC3"
1011

1112
androidxActivity = "1.9.0"
1213
androidxComposeBom = "2024.05.00"
1314
androidx-navigation = "2.8.0-alpha02"
14-
androidx-lifecycle = "2.8.0-rc01"
15+
androidx-lifecycle = "2.8.0"
1516
accompanist = "0.30.1"
1617
horologist = "0.6.10"
1718
wearCompose = "1.3.1"
@@ -59,7 +60,7 @@ horologist-compose-layout = { module = "com.google.android.horologist:horologist
5960
compose-window-size = { module = "dev.chrisbanes.material3:material3-window-size-class-multiplatform", version.ref = "composeWindowSize" }
6061

6162
koin-android = { module = "io.insert-koin:koin-android", version.ref = "koin" }
62-
koin-compose = { module = "io.insert-koin:koin-compose", version.ref = "koinCompose" }
63+
koin-compose = { module = "io.insert-koin:koin-compose", version.ref = "koinComposeMultiplatform" }
6364
koin-core = { module = "io.insert-koin:koin-core", version.ref = "koin" }
6465
koin-test = { module = "io.insert-koin:koin-test", version.ref = "koin" }
6566

iosApp/iosApp.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 52;
6+
objectVersion = 54;
77
objects = {
88

99
/* Begin PBXBuildFile section */
@@ -566,7 +566,7 @@
566566
repositoryURL = "https://github.com/rickclephas/KMP-NativeCoroutines.git";
567567
requirement = {
568568
kind = exactVersion;
569-
version = "1.0.0-ALPHA-10";
569+
version = "1.0.0-ALPHA-30";
570570
};
571571
};
572572
/* End XCRemoteSwiftPackageReference section */

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
{
2+
"originHash" : "609133b310e9c4579a1d75e9696445b51bd516493282d44ac82bc290103e37c2",
23
"pins" : [
34
{
45
"identity" : "kmp-nativecoroutines",
56
"kind" : "remoteSourceControl",
67
"location" : "https://github.com/rickclephas/KMP-NativeCoroutines.git",
78
"state" : {
8-
"revision" : "605d9584033e036c40fd82126a06566bbe1514b0",
9-
"version" : "1.0.0-ALPHA-10"
9+
"revision" : "caf590ab2d260be1a9810c64cbcd9ed896330167",
10+
"version" : "1.0.0-ALPHA-30"
1011
}
1112
},
1213
{
@@ -19,5 +20,5 @@
1920
}
2021
}
2122
],
22-
"version" : 2
23+
"version" : 3
2324
}

settings.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ pluginManagement {
22
listOf(repositories, dependencyResolutionManagement.repositories).forEach {
33
it.apply {
44
google()
5-
gradlePluginPortal()
65
mavenCentral()
6+
gradlePluginPortal()
77
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
88
maven("https://androidx.dev/storage/compose-compiler/repository")
99
}
@@ -16,6 +16,8 @@ pluginManagement {
1616
}
1717
}
1818
}
19+
20+
1921
rootProject.name = "StarWarsKMM"
2022

2123
include(":androidApp", ":shared")

0 commit comments

Comments
 (0)