@momo-kits/native-kits 0.163.1-sp.2-debug → 0.163.1-sp.3-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/.claude/settings.local.json +4 -1
- package/compose/build.gradle.kts +1 -1
- package/compose/compose.podspec +1 -1
- package/gradle.properties +1 -1
- package/ios/native-kits.podspec +1 -1
- package/ios-demo/MoMoUIKitsDemo.podspec +1 -1
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupNotifyDemo.swift +1 -1
- package/ios-demo/Sources/MoMoUIKitsDemo/SampleDemos/PopupPromotionDemo.swift +2 -2
- package/package.json +1 -1
|
@@ -69,7 +69,10 @@
|
|
|
69
69
|
"Bash(xcodebuild -version)",
|
|
70
70
|
"Bash(xcodebuild -workspace iosApp.xcworkspace -scheme iosApp -sdk iphonesimulator -destination 'generic/platform=iOS Simulator' -configuration Debug build CODE_SIGNING_ALLOWED=NO)",
|
|
71
71
|
"Bash(xcodebuild -workspace iosApp.xcworkspace -scheme MoMoUIKits -sdk iphonesimulator -destination 'generic/platform=iOS Simulator' -configuration Debug build CODE_SIGNING_ALLOWED=NO)",
|
|
72
|
-
"Bash(xcodebuild -workspace iosApp.xcworkspace -scheme MoMoUIKits -sdk iphonesimulator -destination 'generic/platform=iOS Simulator' -configuration Debug clean build CODE_SIGNING_ALLOWED=NO)"
|
|
72
|
+
"Bash(xcodebuild -workspace iosApp.xcworkspace -scheme MoMoUIKits -sdk iphonesimulator -destination 'generic/platform=iOS Simulator' -configuration Debug clean build CODE_SIGNING_ALLOWED=NO)",
|
|
73
|
+
"Bash(git commit *)",
|
|
74
|
+
"Bash(npm view *)",
|
|
75
|
+
"Bash(echo \"EXIT=$? -> not resolvable\")"
|
|
73
76
|
]
|
|
74
77
|
}
|
|
75
78
|
}
|
package/compose/build.gradle.kts
CHANGED
package/compose/compose.podspec
CHANGED
package/gradle.properties
CHANGED
package/ios/native-kits.podspec
CHANGED
|
@@ -29,7 +29,7 @@ struct PopupPromotionDemo: View {
|
|
|
29
29
|
private struct PopupPromotionDemoContent: View {
|
|
30
30
|
@EnvironmentObject private var navigator: Navigator
|
|
31
31
|
|
|
32
|
-
@State private var imageUrl = "https://static.momocdn.net/app/
|
|
32
|
+
@State private var imageUrl = "https://static.momocdn.net/app/app/appx/ABC.png?size=M"
|
|
33
33
|
|
|
34
34
|
var body: some View {
|
|
35
35
|
ScrollView {
|
|
@@ -48,7 +48,7 @@ private struct PopupPromotionDemoContent: View {
|
|
|
48
48
|
)
|
|
49
49
|
.padding(.top, 8)
|
|
50
50
|
}
|
|
51
|
-
.padding(
|
|
51
|
+
.padding(Spacing.M * 2)
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
|