@momo-kits/native-kits 0.159.1-beta.7-debug → 0.159.1-beta.8-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.
Files changed (20) hide show
  1. package/compose/build.gradle.kts +2 -2
  2. package/compose/build.gradle.kts.backup +1 -1
  3. package/compose/src/androidMain/kotlin/vn/momo/kits/platform/Platform.android.kt +6 -1
  4. package/compose/src/commonMain/kotlin/vn/momo/kits/navigation/NavigationContainer.kt +68 -66
  5. package/compose/src/commonMain/kotlin/vn/momo/kits/platform/Platform.kt +4 -1
  6. package/compose/src/iosMain/kotlin/vn/momo/kits/platform/Platform.ios.kt +23 -1
  7. package/gradle/libs.versions.toml +1 -0
  8. package/gradle.properties +1 -1
  9. package/package.json +1 -1
  10. package/.claude/settings.local.json +0 -8
  11. package/example/ios/Example.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
  12. package/example/ios/Example.xcworkspace/xcuserdata/huynhdung.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  13. package/example/ios/Example.xcworkspace/xcuserdata/huynhdung.xcuserdatad/xcschemes/xcschememanagement.plist +0 -5
  14. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/MoMoUIKits.xcscheme +0 -58
  15. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/Pods-Example.xcscheme +0 -58
  16. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/SDWebImage.xcscheme +0 -58
  17. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/SDWebImageSwiftUI.xcscheme +0 -58
  18. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/SkeletonUI.xcscheme +0 -58
  19. package/example/ios/Pods/Pods.xcodeproj/xcuserdata/huynhdung.xcuserdatad/xcschemes/xcschememanagement.plist +0 -46
  20. package/local.properties +0 -8
@@ -40,7 +40,7 @@ kotlin {
40
40
  }
41
41
 
42
42
  cocoapods {
43
- version = "0.159.1-beta.7-debug"
43
+ version = "0.159.1-beta.8-debug"
44
44
  summary = "IOS Shared module"
45
45
  homepage = "https://momo.vn"
46
46
  ios.deploymentTarget = "15.0"
@@ -63,6 +63,7 @@ kotlin {
63
63
  implementation(compose.material)
64
64
  implementation(compose.material3)
65
65
  implementation(compose.components.resources)
66
+ implementation(libs.compose.ui.backhandler)
66
67
  implementation(libs.ktor.client.core)
67
68
  implementation(libs.jetbrains.coroutines.core)
68
69
  implementation(libs.navigation.multiplatform)
@@ -177,4 +178,3 @@ compose {
177
178
  // }
178
179
  // }
179
180
  // }
180
-
@@ -63,6 +63,7 @@ kotlin {
63
63
  implementation(compose.material)
64
64
  implementation(compose.material3)
65
65
  implementation(compose.components.resources)
66
+ implementation(libs.compose.ui.backhandler)
66
67
  implementation(libs.ktor.client.core)
67
68
  implementation(libs.jetbrains.coroutines.core)
68
69
  implementation(libs.navigation.multiplatform)
@@ -177,4 +178,3 @@ mavenPublishing {
177
178
  }
178
179
  }
179
180
  }
180
-
@@ -60,6 +60,11 @@ actual fun BackHandler(enabled: Boolean, onBack: () -> Unit) {
60
60
  AndroidBackHandler(enabled = enabled, onBack = onBack)
61
61
  }
62
62
 
63
+ @Composable
64
+ actual fun ProvideNavigationEventDispatcherOwner(content: @Composable () -> Unit) {
65
+ content()
66
+ }
67
+
63
68
  @Composable
64
69
  actual fun getScreenHeight(): Dp {
65
70
  return getScreenDimensions().height.dp + if (getAndroidBuildVersion() >= 35) 0.dp else AppStatusBar.current + AppNavigationBar.current
@@ -108,4 +113,4 @@ actual fun LottieAnimation(
108
113
 
109
114
  actual fun NativePaint.setColor(color: Color){
110
115
  this.color = color.toArgb()
111
- }
116
+ }
@@ -34,6 +34,7 @@ import vn.momo.kits.const.AppTheme
34
34
  import vn.momo.kits.const.Theme
35
35
  import vn.momo.kits.const.ThemeAssets
36
36
  import vn.momo.kits.const.defaultTheme
37
+ import vn.momo.kits.platform.ProvideNavigationEventDispatcherOwner
37
38
  import vn.momo.kits.utils.getAppStatusBarHeight
38
39
  import vn.momo.maxapi.IMaxApi
39
40
 
@@ -77,77 +78,79 @@ fun NavigationContainer(
77
78
 
78
79
  val startDestination = DynamicScreenRegistry.register(initialScreenName, initialScreen, options)
79
80
 
80
- CompositionLocalProvider(
81
- LocalNavigator provides navigator,
82
- LocalMaxApi provides maxApi,
83
- AppTheme provides theme.value,
84
- AppStatusBar provides statusBarHeight,
85
- AppNavigationBar provides navigationBarHeight,
86
- ApplicationContext provides mergedContext,
87
- AppConfig provides config,
88
- AppLanguage provides language,
89
- ScaleSizeMaxRate provides mergedContext?.scaleSizeMaxRate,
81
+ ProvideNavigationEventDispatcherOwner {
82
+ CompositionLocalProvider(
83
+ LocalNavigator provides navigator,
84
+ LocalMaxApi provides maxApi,
85
+ AppTheme provides theme.value,
86
+ AppStatusBar provides statusBarHeight,
87
+ AppNavigationBar provides navigationBarHeight,
88
+ ApplicationContext provides mergedContext,
89
+ AppConfig provides config,
90
+ AppLanguage provides language,
91
+ ScaleSizeMaxRate provides mergedContext?.scaleSizeMaxRate,
90
92
  ) {
91
- LaunchedEffect(Unit) {
92
- setNavigator?.invoke(navigator)
93
- }
93
+ LaunchedEffect(Unit) {
94
+ setNavigator?.invoke(navigator)
95
+ }
94
96
 
95
- NavHost(navController, startDestination = startDestination) {
96
- composable<DynamicScreenRoute>(
97
- enterTransition = {
98
- slideInHorizontally(
99
- animationSpec = tween(300),
100
- initialOffsetX = { it }
101
- )
102
- },
103
- exitTransition = null,
104
- popEnterTransition = { fadeIn(animationSpec = tween(0)) },
105
- popExitTransition = {
106
- slideOutHorizontally(
107
- animationSpec = tween(300),
108
- targetOffsetX = { it }
109
- )
110
- }
111
- ) { backStackEntry ->
112
- val route = backStackEntry.toRoute<DynamicScreenRoute>()
113
- val screen = DynamicScreenRegistry.getScreen(route.id)
97
+ NavHost(navController, startDestination = startDestination) {
98
+ composable<DynamicScreenRoute>(
99
+ enterTransition = {
100
+ slideInHorizontally(
101
+ animationSpec = tween(300),
102
+ initialOffsetX = { it }
103
+ )
104
+ },
105
+ exitTransition = null,
106
+ popEnterTransition = { fadeIn(animationSpec = tween(0)) },
107
+ popExitTransition = {
108
+ slideOutHorizontally(
109
+ animationSpec = tween(300),
110
+ targetOffsetX = { it }
111
+ )
112
+ }
113
+ ) { backStackEntry ->
114
+ val route = backStackEntry.toRoute<DynamicScreenRoute>()
115
+ val screen = DynamicScreenRegistry.getScreen(route.id)
114
116
 
115
- if (screen != null){
116
- StackScreen(
117
- id = route.id,
118
- name = screen.name,
119
- content = screen.content,
120
- navigationOptions = screen.options
121
- )
117
+ if (screen != null) {
118
+ StackScreen(
119
+ id = route.id,
120
+ name = screen.name,
121
+ content = screen.content,
122
+ navigationOptions = screen.options
123
+ )
124
+ }
122
125
  }
123
- }
124
126
 
125
- composable<DynamicDialogRoute>(
126
- enterTransition = {
127
- slideInVertically (
128
- animationSpec = tween(300),
129
- initialOffsetY = { it }
130
- )
131
- },
132
- exitTransition = null,
133
- popEnterTransition = { fadeIn(animationSpec = tween(0)) },
134
- popExitTransition = {
135
- slideOutVertically (
136
- animationSpec = tween(300),
137
- targetOffsetY = { it }
138
- )
139
- }
140
- ) { backStackEntry ->
141
- val route = backStackEntry.toRoute<DynamicDialogRoute>()
142
- val screen = DynamicScreenRegistry.getScreen(route.id)
127
+ composable<DynamicDialogRoute>(
128
+ enterTransition = {
129
+ slideInVertically(
130
+ animationSpec = tween(300),
131
+ initialOffsetY = { it }
132
+ )
133
+ },
134
+ exitTransition = null,
135
+ popEnterTransition = { fadeIn(animationSpec = tween(0)) },
136
+ popExitTransition = {
137
+ slideOutVertically(
138
+ animationSpec = tween(300),
139
+ targetOffsetY = { it }
140
+ )
141
+ }
142
+ ) { backStackEntry ->
143
+ val route = backStackEntry.toRoute<DynamicDialogRoute>()
144
+ val screen = DynamicScreenRegistry.getScreen(route.id)
143
145
 
144
- if (screen != null){
145
- StackScreen(
146
- id = route.id,
147
- name = screen.name,
148
- content = screen.content,
149
- navigationOptions = screen.options
150
- )
146
+ if (screen != null) {
147
+ StackScreen(
148
+ id = route.id,
149
+ name = screen.name,
150
+ content = screen.content,
151
+ navigationOptions = screen.options
152
+ )
153
+ }
151
154
  }
152
155
  }
153
156
  }
@@ -163,4 +166,3 @@ fun NavigationContainer(
163
166
  val LocalMaxApi = staticCompositionLocalOf<IMaxApi?> {
164
167
  error("No MaxApi provided")
165
168
  }
166
-
@@ -24,6 +24,9 @@ expect fun getStatusBarHeight(): Dp
24
24
  @Composable
25
25
  expect fun BackHandler(enabled: Boolean, onBack: () -> Unit)
26
26
 
27
+ @Composable
28
+ expect fun ProvideNavigationEventDispatcherOwner(content: @Composable () -> Unit)
29
+
27
30
  @Composable
28
31
  expect fun getScreenHeight(): Dp
29
32
 
@@ -39,4 +42,4 @@ expect fun LottieAnimation(
39
42
 
40
43
  expect fun NativePaint.setColor(
41
44
  color: Color = Color.Black
42
- )
45
+ )
@@ -6,12 +6,15 @@ import androidx.compose.foundation.layout.asPaddingValues
6
6
  import androidx.compose.foundation.layout.fillMaxSize
7
7
  import androidx.compose.foundation.layout.systemBars
8
8
  import androidx.compose.runtime.Composable
9
+ import androidx.compose.runtime.CompositionLocalProvider
9
10
  import androidx.compose.runtime.LaunchedEffect
10
11
  import androidx.compose.runtime.getValue
11
12
  import androidx.compose.runtime.mutableStateOf
12
13
  import androidx.compose.runtime.remember
13
14
  import androidx.compose.runtime.setValue
15
+ import androidx.compose.ui.InternalComposeUiApi
14
16
  import androidx.compose.ui.Modifier
17
+ import androidx.compose.ui.backhandler.LocalCompatNavigationEventDispatcherOwner
15
18
  import androidx.compose.ui.graphics.Color
16
19
  import androidx.compose.ui.graphics.NativePaint
17
20
  import androidx.compose.ui.graphics.toArgb
@@ -26,6 +29,8 @@ import cocoapods.lottie_ios.CompatibleAnimationView
26
29
  import kotlinx.cinterop.ExperimentalForeignApi
27
30
  import kotlinx.cinterop.get
28
31
  import kotlinx.cinterop.memScoped
32
+ import androidx.navigationevent.NavigationEventDispatcher
33
+ import androidx.navigationevent.NavigationEventDispatcherOwner
29
34
  import org.jetbrains.skia.FilterBlurMode
30
35
  import org.jetbrains.skia.MaskFilter
31
36
  import platform.Foundation.NSBundle
@@ -57,6 +62,23 @@ actual fun getStatusBarHeight(): Dp {
57
62
  actual fun BackHandler(enabled: Boolean, onBack: () -> Unit) {
58
63
  }
59
64
 
65
+ @OptIn(InternalComposeUiApi::class)
66
+ @Composable
67
+ actual fun ProvideNavigationEventDispatcherOwner(content: @Composable () -> Unit) {
68
+ val navigationEventDispatcherOwner = remember {
69
+ object : NavigationEventDispatcherOwner {
70
+ override val navigationEventDispatcher = NavigationEventDispatcher().apply {
71
+ isEnabled = false
72
+ }
73
+ }
74
+ }
75
+
76
+ CompositionLocalProvider(
77
+ LocalCompatNavigationEventDispatcherOwner provides navigationEventDispatcherOwner,
78
+ content = content
79
+ )
80
+ }
81
+
60
82
  @Composable
61
83
  actual fun getScreenHeight(): Dp {
62
84
  return getScreenDimensions().height.dp
@@ -148,4 +170,4 @@ fun Color.toUIColor(): UIColor {
148
170
 
149
171
  actual fun NativePaint.setColor(color: Color){
150
172
  this.color = color.toArgb()
151
- }
173
+ }
@@ -31,6 +31,7 @@ jetbrains-coroutines-test = { group = "org.jetbrains.kotlinx", name = "kotlinx-c
31
31
  jetbrains-serialization = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization", version.ref = "kSerialize" }
32
32
  jetbrains-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "kSerialize" }
33
33
  kotlinx-datetime = { group = "org.jetbrains.kotlinx", name = "kotlinx-datetime", version.ref = "kotlinx-datetime" }
34
+ compose-ui-backhandler = { module = "org.jetbrains.compose.ui:ui-backhandler", version.ref = "compose" }
34
35
  navigation-multiplatform = { module = "org.jetbrains.androidx.navigation:navigation-compose", version.ref = "navigation-multiplatform" }
35
36
  coil-multiplatform-core = { module = "io.coil-kt.coil3:coil-core", version.ref = "coil3-multiplatform" }
36
37
  coil-multiplatform-compose = { module = "io.coil-kt.coil3:coil-compose", version.ref = "coil3-multiplatform" }
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.159.1-beta.7
21
+ version=0.159.1-beta.8
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.159.1-beta.7-debug",
3
+ "version": "0.159.1-beta.8-debug",
4
4
  "private": false,
5
5
  "dependencies": {},
6
6
  "devDependencies": {},
@@ -1,8 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(which glab:*)",
5
- "WebFetch(domain:gitlab.mservice.com.vn)"
6
- ]
7
- }
8
- }
@@ -1,14 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>SchemeUserState</key>
6
- <dict>
7
- <key>Example.xcscheme_^#shared#^_</key>
8
- <dict>
9
- <key>orderHint</key>
10
- <integer>0</integer>
11
- </dict>
12
- </dict>
13
- </dict>
14
- </plist>
@@ -1,5 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict />
5
- </plist>
@@ -1,58 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Scheme
3
- LastUpgradeVersion = "1600"
4
- version = "1.3">
5
- <BuildAction
6
- parallelizeBuildables = "YES"
7
- buildImplicitDependencies = "YES">
8
- <BuildActionEntries>
9
- <BuildActionEntry
10
- buildForTesting = "YES"
11
- buildForRunning = "YES"
12
- buildForProfiling = "YES"
13
- buildForArchiving = "YES"
14
- buildForAnalyzing = "YES">
15
- <BuildableReference
16
- BuildableIdentifier = "primary"
17
- BlueprintIdentifier = "3B6FB503A75BF5BC1FA6F30BC06B9D28"
18
- BuildableName = "MoMoUIKits.framework"
19
- BlueprintName = "MoMoUIKits"
20
- ReferencedContainer = "container:Pods.xcodeproj">
21
- </BuildableReference>
22
- </BuildActionEntry>
23
- </BuildActionEntries>
24
- </BuildAction>
25
- <TestAction
26
- buildConfiguration = "Debug"
27
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
- shouldUseLaunchSchemeArgsEnv = "YES">
30
- <Testables>
31
- </Testables>
32
- </TestAction>
33
- <LaunchAction
34
- buildConfiguration = "Debug"
35
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37
- launchStyle = "0"
38
- useCustomWorkingDirectory = "NO"
39
- ignoresPersistentStateOnLaunch = "NO"
40
- debugDocumentVersioning = "YES"
41
- debugServiceExtension = "internal"
42
- allowLocationSimulation = "YES">
43
- </LaunchAction>
44
- <ProfileAction
45
- buildConfiguration = "Release"
46
- shouldUseLaunchSchemeArgsEnv = "YES"
47
- savedToolIdentifier = ""
48
- useCustomWorkingDirectory = "NO"
49
- debugDocumentVersioning = "YES">
50
- </ProfileAction>
51
- <AnalyzeAction
52
- buildConfiguration = "Debug">
53
- </AnalyzeAction>
54
- <ArchiveAction
55
- buildConfiguration = "Release"
56
- revealArchiveInOrganizer = "YES">
57
- </ArchiveAction>
58
- </Scheme>
@@ -1,58 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Scheme
3
- LastUpgradeVersion = "1600"
4
- version = "1.3">
5
- <BuildAction
6
- parallelizeBuildables = "YES"
7
- buildImplicitDependencies = "YES">
8
- <BuildActionEntries>
9
- <BuildActionEntry
10
- buildForTesting = "YES"
11
- buildForRunning = "YES"
12
- buildForProfiling = "YES"
13
- buildForArchiving = "YES"
14
- buildForAnalyzing = "YES">
15
- <BuildableReference
16
- BuildableIdentifier = "primary"
17
- BlueprintIdentifier = "0AEE99A309977BD12A049FF48AF9BA4B"
18
- BuildableName = "Pods_Example.framework"
19
- BlueprintName = "Pods-Example"
20
- ReferencedContainer = "container:Pods.xcodeproj">
21
- </BuildableReference>
22
- </BuildActionEntry>
23
- </BuildActionEntries>
24
- </BuildAction>
25
- <TestAction
26
- buildConfiguration = "Debug"
27
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
- shouldUseLaunchSchemeArgsEnv = "YES">
30
- <Testables>
31
- </Testables>
32
- </TestAction>
33
- <LaunchAction
34
- buildConfiguration = "Debug"
35
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37
- launchStyle = "0"
38
- useCustomWorkingDirectory = "NO"
39
- ignoresPersistentStateOnLaunch = "NO"
40
- debugDocumentVersioning = "YES"
41
- debugServiceExtension = "internal"
42
- allowLocationSimulation = "YES">
43
- </LaunchAction>
44
- <ProfileAction
45
- buildConfiguration = "Release"
46
- shouldUseLaunchSchemeArgsEnv = "YES"
47
- savedToolIdentifier = ""
48
- useCustomWorkingDirectory = "NO"
49
- debugDocumentVersioning = "YES">
50
- </ProfileAction>
51
- <AnalyzeAction
52
- buildConfiguration = "Debug">
53
- </AnalyzeAction>
54
- <ArchiveAction
55
- buildConfiguration = "Release"
56
- revealArchiveInOrganizer = "YES">
57
- </ArchiveAction>
58
- </Scheme>
@@ -1,58 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Scheme
3
- LastUpgradeVersion = "1600"
4
- version = "1.3">
5
- <BuildAction
6
- parallelizeBuildables = "YES"
7
- buildImplicitDependencies = "YES">
8
- <BuildActionEntries>
9
- <BuildActionEntry
10
- buildForTesting = "YES"
11
- buildForRunning = "YES"
12
- buildForProfiling = "YES"
13
- buildForArchiving = "YES"
14
- buildForAnalyzing = "YES">
15
- <BuildableReference
16
- BuildableIdentifier = "primary"
17
- BlueprintIdentifier = "3847153A6E5EEFB86565BA840768F429"
18
- BuildableName = "SDWebImage.framework"
19
- BlueprintName = "SDWebImage"
20
- ReferencedContainer = "container:Pods.xcodeproj">
21
- </BuildableReference>
22
- </BuildActionEntry>
23
- </BuildActionEntries>
24
- </BuildAction>
25
- <TestAction
26
- buildConfiguration = "Debug"
27
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
- shouldUseLaunchSchemeArgsEnv = "YES">
30
- <Testables>
31
- </Testables>
32
- </TestAction>
33
- <LaunchAction
34
- buildConfiguration = "Debug"
35
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37
- launchStyle = "0"
38
- useCustomWorkingDirectory = "NO"
39
- ignoresPersistentStateOnLaunch = "NO"
40
- debugDocumentVersioning = "YES"
41
- debugServiceExtension = "internal"
42
- allowLocationSimulation = "YES">
43
- </LaunchAction>
44
- <ProfileAction
45
- buildConfiguration = "Release"
46
- shouldUseLaunchSchemeArgsEnv = "YES"
47
- savedToolIdentifier = ""
48
- useCustomWorkingDirectory = "NO"
49
- debugDocumentVersioning = "YES">
50
- </ProfileAction>
51
- <AnalyzeAction
52
- buildConfiguration = "Debug">
53
- </AnalyzeAction>
54
- <ArchiveAction
55
- buildConfiguration = "Release"
56
- revealArchiveInOrganizer = "YES">
57
- </ArchiveAction>
58
- </Scheme>
@@ -1,58 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Scheme
3
- LastUpgradeVersion = "1600"
4
- version = "1.3">
5
- <BuildAction
6
- parallelizeBuildables = "YES"
7
- buildImplicitDependencies = "YES">
8
- <BuildActionEntries>
9
- <BuildActionEntry
10
- buildForTesting = "YES"
11
- buildForRunning = "YES"
12
- buildForProfiling = "YES"
13
- buildForArchiving = "YES"
14
- buildForAnalyzing = "YES">
15
- <BuildableReference
16
- BuildableIdentifier = "primary"
17
- BlueprintIdentifier = "92EBFA3E7005B4C18A9C0B44324EB80F"
18
- BuildableName = "SDWebImageSwiftUI.framework"
19
- BlueprintName = "SDWebImageSwiftUI"
20
- ReferencedContainer = "container:Pods.xcodeproj">
21
- </BuildableReference>
22
- </BuildActionEntry>
23
- </BuildActionEntries>
24
- </BuildAction>
25
- <TestAction
26
- buildConfiguration = "Debug"
27
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
- shouldUseLaunchSchemeArgsEnv = "YES">
30
- <Testables>
31
- </Testables>
32
- </TestAction>
33
- <LaunchAction
34
- buildConfiguration = "Debug"
35
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37
- launchStyle = "0"
38
- useCustomWorkingDirectory = "NO"
39
- ignoresPersistentStateOnLaunch = "NO"
40
- debugDocumentVersioning = "YES"
41
- debugServiceExtension = "internal"
42
- allowLocationSimulation = "YES">
43
- </LaunchAction>
44
- <ProfileAction
45
- buildConfiguration = "Release"
46
- shouldUseLaunchSchemeArgsEnv = "YES"
47
- savedToolIdentifier = ""
48
- useCustomWorkingDirectory = "NO"
49
- debugDocumentVersioning = "YES">
50
- </ProfileAction>
51
- <AnalyzeAction
52
- buildConfiguration = "Debug">
53
- </AnalyzeAction>
54
- <ArchiveAction
55
- buildConfiguration = "Release"
56
- revealArchiveInOrganizer = "YES">
57
- </ArchiveAction>
58
- </Scheme>
@@ -1,58 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Scheme
3
- LastUpgradeVersion = "1600"
4
- version = "1.3">
5
- <BuildAction
6
- parallelizeBuildables = "YES"
7
- buildImplicitDependencies = "YES">
8
- <BuildActionEntries>
9
- <BuildActionEntry
10
- buildForTesting = "YES"
11
- buildForRunning = "YES"
12
- buildForProfiling = "YES"
13
- buildForArchiving = "YES"
14
- buildForAnalyzing = "YES">
15
- <BuildableReference
16
- BuildableIdentifier = "primary"
17
- BlueprintIdentifier = "6510766A9670BFA3B251E2A62446FC5D"
18
- BuildableName = "SkeletonUI.framework"
19
- BlueprintName = "SkeletonUI"
20
- ReferencedContainer = "container:Pods.xcodeproj">
21
- </BuildableReference>
22
- </BuildActionEntry>
23
- </BuildActionEntries>
24
- </BuildAction>
25
- <TestAction
26
- buildConfiguration = "Debug"
27
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
- shouldUseLaunchSchemeArgsEnv = "YES">
30
- <Testables>
31
- </Testables>
32
- </TestAction>
33
- <LaunchAction
34
- buildConfiguration = "Debug"
35
- selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36
- selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37
- launchStyle = "0"
38
- useCustomWorkingDirectory = "NO"
39
- ignoresPersistentStateOnLaunch = "NO"
40
- debugDocumentVersioning = "YES"
41
- debugServiceExtension = "internal"
42
- allowLocationSimulation = "YES">
43
- </LaunchAction>
44
- <ProfileAction
45
- buildConfiguration = "Release"
46
- shouldUseLaunchSchemeArgsEnv = "YES"
47
- savedToolIdentifier = ""
48
- useCustomWorkingDirectory = "NO"
49
- debugDocumentVersioning = "YES">
50
- </ProfileAction>
51
- <AnalyzeAction
52
- buildConfiguration = "Debug">
53
- </AnalyzeAction>
54
- <ArchiveAction
55
- buildConfiguration = "Release"
56
- revealArchiveInOrganizer = "YES">
57
- </ArchiveAction>
58
- </Scheme>
@@ -1,46 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>SchemeUserState</key>
6
- <dict>
7
- <key>MoMoUIKits.xcscheme</key>
8
- <dict>
9
- <key>isShown</key>
10
- <false />
11
- <key>orderHint</key>
12
- <integer>0</integer>
13
- </dict>
14
- <key>Pods-Example.xcscheme</key>
15
- <dict>
16
- <key>isShown</key>
17
- <false />
18
- <key>orderHint</key>
19
- <integer>1</integer>
20
- </dict>
21
- <key>SDWebImage.xcscheme</key>
22
- <dict>
23
- <key>isShown</key>
24
- <false />
25
- <key>orderHint</key>
26
- <integer>2</integer>
27
- </dict>
28
- <key>SDWebImageSwiftUI.xcscheme</key>
29
- <dict>
30
- <key>isShown</key>
31
- <false />
32
- <key>orderHint</key>
33
- <integer>3</integer>
34
- </dict>
35
- <key>SkeletonUI.xcscheme</key>
36
- <dict>
37
- <key>isShown</key>
38
- <false />
39
- <key>orderHint</key>
40
- <integer>4</integer>
41
- </dict>
42
- </dict>
43
- <key>SuppressBuildableAutocreation</key>
44
- <dict />
45
- </dict>
46
- </plist>
package/local.properties DELETED
@@ -1,8 +0,0 @@
1
- ## This file must *NOT* be checked into Version Control Systems,
2
- # as it contains information specific to your local configuration.
3
- #
4
- # Location of the SDK. This is only used by Gradle.
5
- # For customization when using a Version Control System, please read the
6
- # header note.
7
- #Wed Aug 21 14:20:12 ICT 2024
8
- sdk.dir=/Users/huynhdung/Library/Android/sdk