Skip to content

Commit b219f33

Browse files
committed
0.0.1
1 parent 138ec1f commit b219f33

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ buildscript {
2323
classpath("com.diffplug.spotless:spotless-plugin-gradle:${versions.spotless}")
2424
classpath("com.github.ben-manes:gradle-versions-plugin:${versions.gradleVersions}")
2525
classpath("com.squareup:javapoet:1.13.0")
26-
classpath("dev.icerock.moko:kswift-gradle-plugin:0.5.0")
26+
classpath("dev.icerock.moko:kswift-gradle-plugin:${versions.mokoKSwift}")
2727
classpath("org.jetbrains.kotlinx:kover:0.5.1")
2828
}
2929
}

buildSrc/src/main/kotlin/deps.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ object versions {
1313
const val kotlin = "1.6.21"
1414
const val agp = "7.2.1"
1515
const val gradleVersions = "0.42.0"
16+
const val mokoKSwift = "0.5.0"
1617
}
1718

1819
object appConfig {
@@ -28,7 +29,7 @@ object appConfig {
2829
private const val MINOR = 0
2930
private const val PATCH = 1
3031
const val versionCode = MAJOR * 10000 + MINOR * 100 + PATCH
31-
const val versionName = "$MAJOR.$MINOR.$PATCH-SNAPSHOT"
32+
const val versionName = "$MAJOR.$MINOR.$PATCH"
3233
}
3334

3435
object deps {
@@ -117,6 +118,7 @@ object deps {
117118
const val hiltAndroidCompiler = "com.google.dagger:hilt-android-compiler:$version"
118119
}
119120

121+
const val mokoKSwiftRuntime = "dev.icerock.moko:kswift-runtime:${versions.mokoKSwift}"
120122
const val dateTime = "org.jetbrains.kotlinx:kotlinx-datetime:0.3.2"
121123

122124
const val coilCompose = "io.coil-kt:coil-compose:2.1.0"
@@ -165,6 +167,7 @@ inline val PDsS.kotlinxSerialization: PDS get() = id("kotlinx-serialization")
165167
inline val PDsS.kotlinMultiplatform: PDS get() = kotlin("multiplatform")
166168
inline val PDsS.kotlinNativeCocoapods: PDS get() = kotlin("native.cocoapods")
167169
inline val PDsS.daggerHiltAndroid: PDS get() = id("dagger.hilt.android.plugin")
170+
inline val PDsS.mokoKSwift: PDS get() = id("dev.icerock.moko.kswift")
168171

169172
inline val DependencyHandler.shared get() = project(":shared")
170173
inline val DependencyHandler.flowRedux get() = project(":flowredux")

iosApp/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PODS:
22
- Kingfisher (7.3.0)
3-
- shared (0.0.1-SNAPSHOT)
3+
- shared (0.0.1)
44
- sharedSwift (1.0):
55
- shared
66

@@ -21,7 +21,7 @@ EXTERNAL SOURCES:
2121

2222
SPEC CHECKSUMS:
2323
Kingfisher: cdb1189a9223b1bc028816bd47c8b8101a58831c
24-
shared: 342bee73b27f9475b0c75acfb2a877c4ed7c6ba5
24+
shared: 26593bcebdb020429392f3ce88e6209b07fe87f5
2525
sharedSwift: 069e6019f6963d18ae01d1d772429c854db2fe1e
2626

2727
PODFILE CHECKSUM: f3ed113972b96474d784f1c3f8d63d921d63a6fa

shared/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
kotlinxSerialization
1010
kotlinKapt
1111
daggerHiltAndroid
12-
id("dev.icerock.moko.kswift")
12+
mokoKSwift
1313
}
1414

1515
version = appConfig.versionName
@@ -73,7 +73,7 @@ kotlin {
7373
api(deps.atomicfu)
7474
api(deps.immutableCollections)
7575

76-
implementation("dev.icerock.moko:kswift-runtime:0.5.0")
76+
implementation(deps.mokoKSwiftRuntime)
7777
}
7878
}
7979
val commonTest by getting {

shared/shared.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'shared'
3-
spec.version = '0.0.1-SNAPSHOT'
3+
spec.version = '0.0.1'
44
spec.homepage = 'Link to the Shared Module homepage'
55
spec.source = { :http=> ''}
66
spec.authors = ''

0 commit comments

Comments
 (0)