@momo-kits/native-kits 0.161.2-beta.12-debug → 0.161.2-beta.13-debug
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/compose/build.gradle.kts
CHANGED
|
@@ -40,7 +40,7 @@ kotlin {
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
cocoapods {
|
|
43
|
-
version = "0.161.2-beta.
|
|
43
|
+
version = "0.161.2-beta.13-debug"
|
|
44
44
|
summary = "IOS Shared module"
|
|
45
45
|
homepage = "https://momo.vn"
|
|
46
46
|
ios.deploymentTarget = "15.0"
|
|
@@ -74,6 +74,7 @@ kotlin {
|
|
|
74
74
|
implementation(libs.kotlinx.datetime)
|
|
75
75
|
api(libs.native.max.api)
|
|
76
76
|
implementation(libs.compottie)
|
|
77
|
+
api(libs.keight.core)
|
|
77
78
|
}
|
|
78
79
|
androidMain.dependencies {
|
|
79
80
|
implementation(libs.ktor.client.okhttp)
|
|
@@ -85,10 +86,6 @@ kotlin {
|
|
|
85
86
|
}
|
|
86
87
|
}
|
|
87
88
|
|
|
88
|
-
configurations.named("commonMainImplementation") {
|
|
89
|
-
exclude(group = "io.github.alexzhirkevich", module = "keight-core")
|
|
90
|
-
}
|
|
91
|
-
|
|
92
89
|
android {
|
|
93
90
|
namespace = "vn.momo.kits.kits"
|
|
94
91
|
compileSdk = 35
|
|
@@ -74,6 +74,7 @@ kotlin {
|
|
|
74
74
|
implementation(libs.kotlinx.datetime)
|
|
75
75
|
api(libs.native.max.api)
|
|
76
76
|
implementation(libs.compottie)
|
|
77
|
+
api(libs.keight.core)
|
|
77
78
|
}
|
|
78
79
|
androidMain.dependencies {
|
|
79
80
|
implementation(libs.ktor.client.okhttp)
|
|
@@ -85,10 +86,6 @@ kotlin {
|
|
|
85
86
|
}
|
|
86
87
|
}
|
|
87
88
|
|
|
88
|
-
configurations.named("commonMainImplementation") {
|
|
89
|
-
exclude(group = "io.github.alexzhirkevich", module = "keight-core")
|
|
90
|
-
}
|
|
91
|
-
|
|
92
89
|
android {
|
|
93
90
|
namespace = "$gitlabGroup.$gitlabArtifactId"
|
|
94
91
|
compileSdk = libs.versions.android.compileSdk.get().toInt()
|
package/compose/compose.podspec
CHANGED
|
@@ -13,7 +13,8 @@ androidGradlePlugin = "8.13.2"
|
|
|
13
13
|
r8 = "8.9.35"
|
|
14
14
|
kotlinx-datetime = "0.7.1"
|
|
15
15
|
airbnb-lottie = "5.2.0"
|
|
16
|
-
compottie = "2.
|
|
16
|
+
compottie = "2.1.0"
|
|
17
|
+
keight = "0.0.04"
|
|
17
18
|
androidx-activity = "1.9.1"
|
|
18
19
|
androidx-appcompat = "1.7.0"
|
|
19
20
|
material = "1.10.0"
|
|
@@ -40,6 +41,9 @@ coil-multiplatform-network-ktor = { module = "io.coil-kt.coil3:coil-network-ktor
|
|
|
40
41
|
r8 = { module = "com.android.tools:r8", version.ref = "r8" }
|
|
41
42
|
airbnb-lottie = { group = "com.airbnb.android", name = "lottie-compose", version.ref = "airbnb-lottie" }
|
|
42
43
|
compottie = { module = "io.github.alexzhirkevich:compottie", version.ref = "compottie" }
|
|
44
|
+
# AI-GENERATED START: explicit keight-core so it is never stripped from the iOS native link (fixes keight.js.JsAny unlinked symbol)
|
|
45
|
+
keight-core = { module = "io.github.alexzhirkevich:keight-core", version.ref = "keight" }
|
|
46
|
+
# AI-GENERATED END
|
|
43
47
|
native-max-api = { group = "vn.momo.maxapi", name = "NativeMaxApi", version.ref = "nativemaxapi" }
|
|
44
48
|
kits = { module = "vn.momo.kits:kits", version.ref = "kits" }
|
|
45
49
|
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "androidx-appcompat" }
|
package/gradle.properties
CHANGED