@momo-kits/native-kits 0.162.1-gif.14-debug → 0.162.1-gif.16-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
|
@@ -30,7 +30,7 @@ kotlin {
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
val fwName = gitlabArtifactId
|
|
33
|
-
val iosTargets = listOf(iosArm64(), iosSimulatorArm64())
|
|
33
|
+
val iosTargets = listOf(iosArm64(), iosSimulatorArm64(), iosX64())
|
|
34
34
|
iosTargets.forEach {
|
|
35
35
|
it.binaries.framework {
|
|
36
36
|
baseName = fwName
|
|
@@ -40,7 +40,7 @@ kotlin {
|
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
cocoapods {
|
|
43
|
-
version = "0.162.1-gif.
|
|
43
|
+
version = "0.162.1-gif.16-debug"
|
|
44
44
|
summary = "IOS Shared module"
|
|
45
45
|
homepage = "https://momo.vn"
|
|
46
46
|
ios.deploymentTarget = "15.0"
|
|
@@ -77,7 +77,9 @@ kotlin {
|
|
|
77
77
|
implementation(libs.kotlinx.datetime)
|
|
78
78
|
api(libs.native.max.api)
|
|
79
79
|
implementation(libs.compottie)
|
|
80
|
-
implementation(libs.sketch.
|
|
80
|
+
implementation("io.github.panpf.sketch4:sketch-compose:${libs.versions.sketch.get()}") {
|
|
81
|
+
exclude(group = "io.github.panpf.sketch4", module = "sketch-compose-core")
|
|
82
|
+
}
|
|
81
83
|
implementation(project(":sketch-compose-core"))
|
|
82
84
|
implementation(libs.sketch.http.core)
|
|
83
85
|
implementation(libs.sketch.animated.gif)
|
|
@@ -30,7 +30,7 @@ kotlin {
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
val fwName = gitlabArtifactId
|
|
33
|
-
val iosTargets = listOf(iosArm64(), iosSimulatorArm64())
|
|
33
|
+
val iosTargets = listOf(iosArm64(), iosSimulatorArm64(), iosX64())
|
|
34
34
|
iosTargets.forEach {
|
|
35
35
|
it.binaries.framework {
|
|
36
36
|
baseName = fwName
|
|
@@ -77,7 +77,9 @@ kotlin {
|
|
|
77
77
|
implementation(libs.kotlinx.datetime)
|
|
78
78
|
api(libs.native.max.api)
|
|
79
79
|
implementation(libs.compottie)
|
|
80
|
-
implementation(libs.sketch.
|
|
80
|
+
implementation("io.github.panpf.sketch4:sketch-compose:${libs.versions.sketch.get()}") {
|
|
81
|
+
exclude(group = "io.github.panpf.sketch4", module = "sketch-compose-core")
|
|
82
|
+
}
|
|
81
83
|
implementation(project(":sketch-compose-core"))
|
|
82
84
|
implementation(libs.sketch.http.core)
|
|
83
85
|
implementation(libs.sketch.animated.gif)
|
package/compose/compose.podspec
CHANGED
package/gradle.properties
CHANGED
package/package.json
CHANGED
package/publish.sh
CHANGED
|
@@ -241,6 +241,11 @@ phase_publish_maven() {
|
|
|
241
241
|
VERSION=$(node -p "require('./package.json').version")
|
|
242
242
|
export VERSION="$VERSION"
|
|
243
243
|
|
|
244
|
+
echo "📦 Publishing patched sketch-compose-core to Maven..."
|
|
245
|
+
|
|
246
|
+
./gradlew :sketch-compose-core:publishAllPublicationsToGitLabPackagesRepository
|
|
247
|
+
|
|
248
|
+
echo "✅ patched sketch-compose-core Maven publishing completed successfully!"
|
|
244
249
|
echo "📦 Publishing KMP artifacts to Maven (version ${VERSION})..."
|
|
245
250
|
|
|
246
251
|
./gradlew :compose:publishAllPublicationsToGitLabPackagesRepository
|
|
@@ -27,6 +27,7 @@ kotlin {
|
|
|
27
27
|
|
|
28
28
|
iosArm64()
|
|
29
29
|
iosSimulatorArm64()
|
|
30
|
+
iosX64()
|
|
30
31
|
|
|
31
32
|
sourceSets {
|
|
32
33
|
commonMain {
|
|
@@ -58,7 +59,7 @@ android {
|
|
|
58
59
|
|
|
59
60
|
publishing {
|
|
60
61
|
publications.withType<MavenPublication>().configureEach {
|
|
61
|
-
groupId = "
|
|
62
|
+
groupId = "vn.momo.kits"
|
|
62
63
|
version = libs.versions.sketch.get()
|
|
63
64
|
}
|
|
64
65
|
|