File tree 6 files changed +29
-15
lines changed
project.xcworkspace/xcshareddata/swiftpm
6 files changed +29
-15
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,14 @@ kotlin {
16
16
browser {
17
17
commonWebpackConfig {
18
18
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
+ }
19
27
}
20
28
}
21
29
Original file line number Diff line number Diff line change 12
12
# org.gradle.parallel=true
13
13
# Thu Dec 29 19:55:36 GMT 2022
14
14
kotlin.code.style =official
15
- xcodeproj =./StarWarsiOS
15
+
16
+ xcodeproj =./iosApp
17
+
16
18
kotlin.mpp.stability.nowarn =true
17
19
org.gradle.jvmargs =-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
18
20
kotlin.mpp.androidSourceSetLayoutVersion =2
Original file line number Diff line number Diff line change 1
1
[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 "
5
5
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"
8
9
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 "
10
11
11
12
androidxActivity = " 1.9.0"
12
13
androidxComposeBom = " 2024.05.00"
13
14
androidx-navigation = " 2.8.0-alpha02"
14
- androidx-lifecycle = " 2.8.0-rc01 "
15
+ androidx-lifecycle = " 2.8.0"
15
16
accompanist = " 0.30.1"
16
17
horologist = " 0.6.10"
17
18
wearCompose = " 1.3.1"
@@ -59,7 +60,7 @@ horologist-compose-layout = { module = "com.google.android.horologist:horologist
59
60
compose-window-size = { module = " dev.chrisbanes.material3:material3-window-size-class-multiplatform" , version.ref = " composeWindowSize" }
60
61
61
62
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 " }
63
64
koin-core = { module = " io.insert-koin:koin-core" , version.ref = " koin" }
64
65
koin-test = { module = " io.insert-koin:koin-test" , version.ref = " koin" }
65
66
Original file line number Diff line number Diff line change 3
3
archiveVersion = 1;
4
4
classes = {
5
5
};
6
- objectVersion = 52 ;
6
+ objectVersion = 54 ;
7
7
objects = {
8
8
9
9
/* Begin PBXBuildFile section */
566
566
repositoryURL = "https://github.com/rickclephas/KMP-NativeCoroutines.git";
567
567
requirement = {
568
568
kind = exactVersion;
569
- version = "1.0.0-ALPHA-10 ";
569
+ version = "1.0.0-ALPHA-30 ";
570
570
};
571
571
};
572
572
/* End XCRemoteSwiftPackageReference section */
Original file line number Diff line number Diff line change 1
1
{
2
+ "originHash" : " 609133b310e9c4579a1d75e9696445b51bd516493282d44ac82bc290103e37c2" ,
2
3
"pins" : [
3
4
{
4
5
"identity" : " kmp-nativecoroutines" ,
5
6
"kind" : " remoteSourceControl" ,
6
7
"location" : " https://github.com/rickclephas/KMP-NativeCoroutines.git" ,
7
8
"state" : {
8
- "revision" : " 605d9584033e036c40fd82126a06566bbe1514b0 " ,
9
- "version" : " 1.0.0-ALPHA-10 "
9
+ "revision" : " caf590ab2d260be1a9810c64cbcd9ed896330167 " ,
10
+ "version" : " 1.0.0-ALPHA-30 "
10
11
}
11
12
},
12
13
{
19
20
}
20
21
}
21
22
],
22
- "version" : 2
23
+ "version" : 3
23
24
}
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ pluginManagement {
2
2
listOf (repositories, dependencyResolutionManagement.repositories).forEach {
3
3
it.apply {
4
4
google()
5
- gradlePluginPortal()
6
5
mavenCentral()
6
+ gradlePluginPortal()
7
7
maven(" https://maven.pkg.jetbrains.space/public/p/compose/dev" )
8
8
maven(" https://androidx.dev/storage/compose-compiler/repository" )
9
9
}
@@ -16,6 +16,8 @@ pluginManagement {
16
16
}
17
17
}
18
18
}
19
+
20
+
19
21
rootProject.name = " StarWarsKMM"
20
22
21
23
include(" :androidApp" , " :shared" )
You can’t perform that action at this time.
0 commit comments