@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.
@@ -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.14-debug"
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.compose)
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.compose)
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)
@@ -1,6 +1,6 @@
1
1
  Pod::Spec.new do |spec|
2
2
  spec.name = 'compose'
3
- spec.version = '0.162.1-gif.13'
3
+ spec.version = '0.162.1-gif.15'
4
4
  spec.homepage = 'https://momo.vn'
5
5
  spec.source = { :http=> ''}
6
6
  spec.authors = ''
package/gradle.properties CHANGED
@@ -18,7 +18,7 @@ kotlin.apple.xcodeCompatibility.nowarn=true
18
18
  name="ComposeKits"
19
19
  group=vn.momo.kits
20
20
  artifact.id=kits
21
- version=0.162.1-gif.14
21
+ version=0.162.1-gif.16
22
22
 
23
23
  repo=GitLab
24
24
  url=https://gitlab.mservice.com.vn/api/v4/projects/5400/packages/maven
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@momo-kits/native-kits",
3
- "version": "0.162.1-gif.14-debug",
3
+ "version": "0.162.1-gif.16-debug",
4
4
  "private": false,
5
5
  "dependencies": {},
6
6
  "devDependencies": {},
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 = "io.github.panpf.sketch4"
62
+ groupId = "vn.momo.kits"
62
63
  version = libs.versions.sketch.get()
63
64
  }
64
65