@momo-kits/native-kits 0.0.1-beta.2
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/CODE_OF_CONDUCT.md +133 -0
- package/CONTRIBUTING.md +114 -0
- package/LICENSE +20 -0
- package/README.md +6 -0
- package/android/build.gradle +82 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +4 -0
- package/android/src/main/java/com/momoplatform/nativekits/NativeKitsPackage.kt +17 -0
- package/android/src/main/java/com/momoplatform/nativekits/NativeKitsViewManager.kt +20 -0
- package/example/ios/Example/Assets.xcassets/AppIcon.appiconset/Contents.json +63 -0
- package/example/ios/Example/Assets.xcassets/Background.colorset/Contents.json +38 -0
- package/example/ios/Example/Assets.xcassets/Border.colorset/Contents.json +38 -0
- package/example/ios/Example/Assets.xcassets/Card.colorset/Contents.json +38 -0
- package/example/ios/Example/Assets.xcassets/Contents.json +6 -0
- package/example/ios/Example/Assets.xcassets/Error.colorset/Contents.json +38 -0
- package/example/ios/Example/Assets.xcassets/Primary.colorset/Contents.json +38 -0
- package/example/ios/Example/Assets.xcassets/PrimaryDark.colorset/Contents.json +38 -0
- package/example/ios/Example/Assets.xcassets/PrimaryLight.colorset/Contents.json +38 -0
- package/example/ios/Example/Assets.xcassets/Secondary.colorset/Contents.json +38 -0
- package/example/ios/Example/Assets.xcassets/Success.colorset/Contents.json +38 -0
- package/example/ios/Example/Assets.xcassets/Text.colorset/Contents.json +38 -0
- package/example/ios/Example/Assets.xcassets/TextSecondary.colorset/Contents.json +38 -0
- package/example/ios/Example/Assets.xcassets/Warning.colorset/Contents.json +38 -0
- package/example/ios/Example/ComponentDetail.swift +35 -0
- package/example/ios/Example/ComponentItem.swift +24 -0
- package/example/ios/Example/ComponentModel.swift +31 -0
- package/example/ios/Example/ContentView.swift +53 -0
- package/example/ios/Example/Example.entitlements +10 -0
- package/example/ios/Example/Foundation/ButtonDemo.swift +80 -0
- package/example/ios/Example/Foundation/Popup/ActionSheets.swift +136 -0
- package/example/ios/Example/Foundation/Popup/Floats.swift +127 -0
- package/example/ios/Example/Foundation/Popup/Popups.swift +101 -0
- package/example/ios/Example/Foundation/PopupDemo.swift +366 -0
- package/example/ios/Example/Foundation/TypographyDemo.swift +53 -0
- package/example/ios/Example/Foundation.swift +26 -0
- package/example/ios/Example/Info.plist +18 -0
- package/example/ios/Example/Library/SwipeableDemo.swift +105 -0
- package/example/ios/Example/Library.swift +26 -0
- package/example/ios/Example/Main.swift +11 -0
- package/example/ios/Example/Overview.swift +20 -0
- package/example/ios/Example/Preview Content/Preview Assets.xcassets/Contents.json +6 -0
- package/example/ios/Example/Resource/SFProText-Black.ttf +0 -0
- package/example/ios/Example/Resource/SFProText-Bold.ttf +0 -0
- package/example/ios/Example/Resource/SFProText-Heavy.ttf +0 -0
- package/example/ios/Example/Resource/SFProText-Light.ttf +0 -0
- package/example/ios/Example/Resource/SFProText-Medium.ttf +0 -0
- package/example/ios/Example/Resource/SFProText-Regular.ttf +0 -0
- package/example/ios/Example/Resource/SFProText-Semibold.ttf +0 -0
- package/example/ios/Example/Resource/SFProText-Thin.ttf +0 -0
- package/example/ios/Example/Resource/SFProText-Ultralight.ttf +0 -0
- package/example/ios/Example/Resource/foundation.json +33 -0
- package/example/ios/Example/Resource/library.json +8 -0
- package/example/ios/Example/Utils.swift +30 -0
- package/example/ios/Example/ViewModifier/DarkViewModifier.swift +22 -0
- package/example/ios/Example.xcodeproj/project.pbxproj +565 -0
- package/example/ios/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/example/ios/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/example/ios/Example.xcodeproj/project.xcworkspace/xcuserdata/wem.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/example/ios/Example.xcodeproj/xcuserdata/wem.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/example/ios/Example.xcworkspace/contents.xcworkspacedata +10 -0
- package/example/ios/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/example/ios/Example.xcworkspace/xcuserdata/wem.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/example/ios/Example.xcworkspace/xcuserdata/wem.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +6 -0
- package/example/ios/Podfile +6 -0
- package/example/ios/Podfile.lock +16 -0
- package/example/ios/Pods/Local Podspecs/MoMoUIKits.podspec.json +29 -0
- package/example/ios/Pods/Manifest.lock +16 -0
- package/example/ios/Pods/Pods.xcodeproj/project.pbxproj +661 -0
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/wem.xcuserdatad/xcschemes/MoMoUIKits.xcscheme +58 -0
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/wem.xcuserdatad/xcschemes/Pods-Example.xcscheme +58 -0
- package/example/ios/Pods/Pods.xcodeproj/xcuserdata/wem.xcuserdatad/xcschemes/xcschememanagement.plist +25 -0
- package/example/ios/Pods/Target Support Files/MoMoUIKits/MoMoUIKits-dummy.m +5 -0
- package/example/ios/Pods/Target Support Files/MoMoUIKits/MoMoUIKits-prefix.pch +12 -0
- package/example/ios/Pods/Target Support Files/MoMoUIKits/MoMoUIKits-umbrella.h +16 -0
- package/example/ios/Pods/Target Support Files/MoMoUIKits/MoMoUIKits.debug.xcconfig +12 -0
- package/example/ios/Pods/Target Support Files/MoMoUIKits/MoMoUIKits.modulemap +6 -0
- package/example/ios/Pods/Target Support Files/MoMoUIKits/MoMoUIKits.release.xcconfig +12 -0
- package/example/ios/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown +3 -0
- package/example/ios/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist +29 -0
- package/example/ios/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m +5 -0
- package/example/ios/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h +16 -0
- package/example/ios/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig +14 -0
- package/example/ios/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap +6 -0
- package/example/ios/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig +14 -0
- package/ios/Button/Button.swift +131 -0
- package/ios/Colors+Spacing/Colors.swift +170 -0
- package/ios/Colors+Spacing/Radius.swift +11 -0
- package/ios/Colors+Spacing/Spacing.swift +12 -0
- package/ios/Extensions/Color++.swift +25 -0
- package/ios/OTPKeyboard/KeyboardButton.swift +33 -0
- package/ios/OTPKeyboard/OTPKeyboard.swift +145 -0
- package/ios/Popup/Modifiers.swift +172 -0
- package/ios/Popup/PopupView.swift +397 -0
- package/ios/Popup/Utils.swift +186 -0
- package/ios/Swipeable/SwipeCell.swift +270 -0
- package/ios/Swipeable/SwipeCellModel.swift +86 -0
- package/ios/Theme.md +18 -0
- package/ios/Typography/Typography.swift +30 -0
- package/ios/native-kits.podspec +15 -0
- package/package.json +8 -0
- package/publish.sh +28 -0
|
@@ -0,0 +1,565 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 55;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
7C2DCE1103090F8BBC32EB74 /* libPods-Example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E647CBD85C8D84F8BD77AF6 /* libPods-Example.a */; };
|
|
11
|
+
A60654E02948383F00D81339 /* Overview.swift in Sources */ = {isa = PBXBuildFile; fileRef = A60654DF2948383F00D81339 /* Overview.swift */; };
|
|
12
|
+
A60654E229483B9100D81339 /* Foundation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A60654E129483B9100D81339 /* Foundation.swift */; };
|
|
13
|
+
A60654E429483B9F00D81339 /* Library.swift in Sources */ = {isa = PBXBuildFile; fileRef = A60654E329483B9F00D81339 /* Library.swift */; };
|
|
14
|
+
A63CC29C2944180B0022BA1A /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A63CC29B2944180B0022BA1A /* ContentView.swift */; };
|
|
15
|
+
A63CC2A02944180D0022BA1A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A63CC29F2944180D0022BA1A /* Assets.xcassets */; };
|
|
16
|
+
A63CC2A42944180D0022BA1A /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A63CC2A32944180D0022BA1A /* Preview Assets.xcassets */; };
|
|
17
|
+
A6611E4C295AD66100C0E80F /* Floats.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6611E4B295AD66100C0E80F /* Floats.swift */; };
|
|
18
|
+
A6611E50295AD68B00C0E80F /* Popups.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6611E4F295AD68B00C0E80F /* Popups.swift */; };
|
|
19
|
+
A6611E52295AD6A200C0E80F /* ActionSheets.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6611E51295AD6A100C0E80F /* ActionSheets.swift */; };
|
|
20
|
+
A6685456294E0FB800626C0D /* DarkViewModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6685455294E0FB800626C0D /* DarkViewModifier.swift */; };
|
|
21
|
+
A6798BD129554E95008A2A87 /* ComponentModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6798BD029554E95008A2A87 /* ComponentModel.swift */; };
|
|
22
|
+
A6798BD329554F01008A2A87 /* foundation.json in Resources */ = {isa = PBXBuildFile; fileRef = A6798BD229554F01008A2A87 /* foundation.json */; };
|
|
23
|
+
A6798BD5295551BF008A2A87 /* ComponentItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6798BD4295551BF008A2A87 /* ComponentItem.swift */; };
|
|
24
|
+
A6798BD729555216008A2A87 /* ComponentDetail.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6798BD629555216008A2A87 /* ComponentDetail.swift */; };
|
|
25
|
+
A6798BDB2955605F008A2A87 /* library.json in Resources */ = {isa = PBXBuildFile; fileRef = A6798BDA2955605F008A2A87 /* library.json */; };
|
|
26
|
+
A6798BDD295560C8008A2A87 /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6798BDC295560C8008A2A87 /* Utils.swift */; };
|
|
27
|
+
A6798BDF2955A9AF008A2A87 /* PopupDemo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6798BDE2955A9AF008A2A87 /* PopupDemo.swift */; };
|
|
28
|
+
A68B77E1294C8D180091EAB6 /* TypographyDemo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A68B77E0294C8D180091EAB6 /* TypographyDemo.swift */; };
|
|
29
|
+
A6D7CE742949E892002D5762 /* SFProText-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A6D7CE6B2949E892002D5762 /* SFProText-Light.ttf */; };
|
|
30
|
+
A6D7CE752949E892002D5762 /* SFProText-Semibold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A6D7CE6C2949E892002D5762 /* SFProText-Semibold.ttf */; };
|
|
31
|
+
A6D7CE762949E892002D5762 /* SFProText-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A6D7CE6D2949E892002D5762 /* SFProText-Bold.ttf */; };
|
|
32
|
+
A6D7CE772949E892002D5762 /* SFProText-Thin.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A6D7CE6E2949E892002D5762 /* SFProText-Thin.ttf */; };
|
|
33
|
+
A6D7CE782949E892002D5762 /* SFProText-Heavy.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A6D7CE6F2949E892002D5762 /* SFProText-Heavy.ttf */; };
|
|
34
|
+
A6D7CE792949E892002D5762 /* SFProText-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A6D7CE702949E892002D5762 /* SFProText-Black.ttf */; };
|
|
35
|
+
A6D7CE7A2949E892002D5762 /* SFProText-Ultralight.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A6D7CE712949E892002D5762 /* SFProText-Ultralight.ttf */; };
|
|
36
|
+
A6D7CE7B2949E892002D5762 /* SFProText-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A6D7CE722949E892002D5762 /* SFProText-Regular.ttf */; };
|
|
37
|
+
A6D7CE7C2949E892002D5762 /* SFProText-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A6D7CE732949E892002D5762 /* SFProText-Medium.ttf */; };
|
|
38
|
+
A6E1EABA2952A35300DE02CA /* SwipeableDemo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6E1EAB92952A35300DE02CA /* SwipeableDemo.swift */; };
|
|
39
|
+
A6E318C4294632FF0008BCA5 /* Main.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6E318C3294632FF0008BCA5 /* Main.swift */; };
|
|
40
|
+
D4B19F2B294C8BD70055EFC8 /* ButtonDemo.swift in Sources */ = {isa = PBXBuildFile; fileRef = D4B19F2A294C8BD70055EFC8 /* ButtonDemo.swift */; };
|
|
41
|
+
/* End PBXBuildFile section */
|
|
42
|
+
|
|
43
|
+
/* Begin PBXFileReference section */
|
|
44
|
+
5F23D0ED8E6EC599BDAB8D3E /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.release.xcconfig"; path = "Target Support Files/Pods-Example/Pods-Example.release.xcconfig"; sourceTree = "<group>"; };
|
|
45
|
+
6E647CBD85C8D84F8BD77AF6 /* libPods-Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
46
|
+
92F011B07CB0D787E0F7AB88 /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.debug.xcconfig"; path = "Target Support Files/Pods-Example/Pods-Example.debug.xcconfig"; sourceTree = "<group>"; };
|
|
47
|
+
A60654DF2948383F00D81339 /* Overview.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Overview.swift; sourceTree = "<group>"; };
|
|
48
|
+
A60654E129483B9100D81339 /* Foundation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Foundation.swift; sourceTree = "<group>"; };
|
|
49
|
+
A60654E329483B9F00D81339 /* Library.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Library.swift; sourceTree = "<group>"; };
|
|
50
|
+
A63CC2982944180B0022BA1A /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
51
|
+
A63CC29B2944180B0022BA1A /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
|
|
52
|
+
A63CC29F2944180D0022BA1A /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
53
|
+
A63CC2A12944180D0022BA1A /* Example.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Example.entitlements; sourceTree = "<group>"; };
|
|
54
|
+
A63CC2A32944180D0022BA1A /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
|
|
55
|
+
A6611E4B295AD66100C0E80F /* Floats.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Floats.swift; sourceTree = "<group>"; };
|
|
56
|
+
A6611E4F295AD68B00C0E80F /* Popups.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Popups.swift; sourceTree = "<group>"; };
|
|
57
|
+
A6611E51295AD6A100C0E80F /* ActionSheets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActionSheets.swift; sourceTree = "<group>"; };
|
|
58
|
+
A6685455294E0FB800626C0D /* DarkViewModifier.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DarkViewModifier.swift; sourceTree = "<group>"; };
|
|
59
|
+
A6798BD029554E95008A2A87 /* ComponentModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComponentModel.swift; sourceTree = "<group>"; };
|
|
60
|
+
A6798BD229554F01008A2A87 /* foundation.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = foundation.json; sourceTree = "<group>"; };
|
|
61
|
+
A6798BD4295551BF008A2A87 /* ComponentItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComponentItem.swift; sourceTree = "<group>"; };
|
|
62
|
+
A6798BD629555216008A2A87 /* ComponentDetail.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ComponentDetail.swift; sourceTree = "<group>"; };
|
|
63
|
+
A6798BDA2955605F008A2A87 /* library.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = library.json; sourceTree = "<group>"; };
|
|
64
|
+
A6798BDC295560C8008A2A87 /* Utils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Utils.swift; sourceTree = "<group>"; };
|
|
65
|
+
A6798BDE2955A9AF008A2A87 /* PopupDemo.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PopupDemo.swift; sourceTree = "<group>"; };
|
|
66
|
+
A68B77E0294C8D180091EAB6 /* TypographyDemo.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TypographyDemo.swift; sourceTree = "<group>"; };
|
|
67
|
+
A6B0FB2A294C5EF100961F77 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
|
|
68
|
+
A6D7CE6B2949E892002D5762 /* SFProText-Light.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SFProText-Light.ttf"; sourceTree = "<group>"; };
|
|
69
|
+
A6D7CE6C2949E892002D5762 /* SFProText-Semibold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SFProText-Semibold.ttf"; sourceTree = "<group>"; };
|
|
70
|
+
A6D7CE6D2949E892002D5762 /* SFProText-Bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SFProText-Bold.ttf"; sourceTree = "<group>"; };
|
|
71
|
+
A6D7CE6E2949E892002D5762 /* SFProText-Thin.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SFProText-Thin.ttf"; sourceTree = "<group>"; };
|
|
72
|
+
A6D7CE6F2949E892002D5762 /* SFProText-Heavy.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SFProText-Heavy.ttf"; sourceTree = "<group>"; };
|
|
73
|
+
A6D7CE702949E892002D5762 /* SFProText-Black.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SFProText-Black.ttf"; sourceTree = "<group>"; };
|
|
74
|
+
A6D7CE712949E892002D5762 /* SFProText-Ultralight.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SFProText-Ultralight.ttf"; sourceTree = "<group>"; };
|
|
75
|
+
A6D7CE722949E892002D5762 /* SFProText-Regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SFProText-Regular.ttf"; sourceTree = "<group>"; };
|
|
76
|
+
A6D7CE732949E892002D5762 /* SFProText-Medium.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = "SFProText-Medium.ttf"; sourceTree = "<group>"; };
|
|
77
|
+
A6E1EAB92952A35300DE02CA /* SwipeableDemo.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwipeableDemo.swift; sourceTree = "<group>"; };
|
|
78
|
+
A6E318C3294632FF0008BCA5 /* Main.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Main.swift; sourceTree = "<group>"; };
|
|
79
|
+
D4B19F2A294C8BD70055EFC8 /* ButtonDemo.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ButtonDemo.swift; sourceTree = "<group>"; };
|
|
80
|
+
/* End PBXFileReference section */
|
|
81
|
+
|
|
82
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
83
|
+
A63CC2952944180B0022BA1A /* Frameworks */ = {
|
|
84
|
+
isa = PBXFrameworksBuildPhase;
|
|
85
|
+
buildActionMask = 2147483647;
|
|
86
|
+
files = (
|
|
87
|
+
7C2DCE1103090F8BBC32EB74 /* libPods-Example.a in Frameworks */,
|
|
88
|
+
);
|
|
89
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
90
|
+
};
|
|
91
|
+
/* End PBXFrameworksBuildPhase section */
|
|
92
|
+
|
|
93
|
+
/* Begin PBXGroup section */
|
|
94
|
+
4EE7D5CDEA2D2BB95A1D8A87 /* Frameworks */ = {
|
|
95
|
+
isa = PBXGroup;
|
|
96
|
+
children = (
|
|
97
|
+
6E647CBD85C8D84F8BD77AF6 /* libPods-Example.a */,
|
|
98
|
+
);
|
|
99
|
+
name = Frameworks;
|
|
100
|
+
sourceTree = "<group>";
|
|
101
|
+
};
|
|
102
|
+
4FA352E4EF64ED8C7AC0E77F /* Pods */ = {
|
|
103
|
+
isa = PBXGroup;
|
|
104
|
+
children = (
|
|
105
|
+
92F011B07CB0D787E0F7AB88 /* Pods-Example.debug.xcconfig */,
|
|
106
|
+
5F23D0ED8E6EC599BDAB8D3E /* Pods-Example.release.xcconfig */,
|
|
107
|
+
);
|
|
108
|
+
path = Pods;
|
|
109
|
+
sourceTree = "<group>";
|
|
110
|
+
};
|
|
111
|
+
A63CC28F2944180B0022BA1A = {
|
|
112
|
+
isa = PBXGroup;
|
|
113
|
+
children = (
|
|
114
|
+
A63CC29A2944180B0022BA1A /* Example */,
|
|
115
|
+
A63CC2992944180B0022BA1A /* Products */,
|
|
116
|
+
4FA352E4EF64ED8C7AC0E77F /* Pods */,
|
|
117
|
+
4EE7D5CDEA2D2BB95A1D8A87 /* Frameworks */,
|
|
118
|
+
);
|
|
119
|
+
sourceTree = "<group>";
|
|
120
|
+
};
|
|
121
|
+
A63CC2992944180B0022BA1A /* Products */ = {
|
|
122
|
+
isa = PBXGroup;
|
|
123
|
+
children = (
|
|
124
|
+
A63CC2982944180B0022BA1A /* Example.app */,
|
|
125
|
+
);
|
|
126
|
+
name = Products;
|
|
127
|
+
sourceTree = "<group>";
|
|
128
|
+
};
|
|
129
|
+
A63CC29A2944180B0022BA1A /* Example */ = {
|
|
130
|
+
isa = PBXGroup;
|
|
131
|
+
children = (
|
|
132
|
+
A6798BCF29554E1B008A2A87 /* ViewModifier */,
|
|
133
|
+
A6E1EAB82952A32B00DE02CA /* Library */,
|
|
134
|
+
D4B19F29294C7EE50055EFC8 /* Foundation */,
|
|
135
|
+
A6B0FB2A294C5EF100961F77 /* Info.plist */,
|
|
136
|
+
A6E318C3294632FF0008BCA5 /* Main.swift */,
|
|
137
|
+
A63CC29B2944180B0022BA1A /* ContentView.swift */,
|
|
138
|
+
A60654DF2948383F00D81339 /* Overview.swift */,
|
|
139
|
+
A6798BD029554E95008A2A87 /* ComponentModel.swift */,
|
|
140
|
+
A6798BD4295551BF008A2A87 /* ComponentItem.swift */,
|
|
141
|
+
A6798BD629555216008A2A87 /* ComponentDetail.swift */,
|
|
142
|
+
A6798BDC295560C8008A2A87 /* Utils.swift */,
|
|
143
|
+
A60654E129483B9100D81339 /* Foundation.swift */,
|
|
144
|
+
A60654E329483B9F00D81339 /* Library.swift */,
|
|
145
|
+
A63CC29F2944180D0022BA1A /* Assets.xcassets */,
|
|
146
|
+
A63CC2A12944180D0022BA1A /* Example.entitlements */,
|
|
147
|
+
A6D46DC92949BB1E0022243D /* Resource */,
|
|
148
|
+
A63CC2A22944180D0022BA1A /* Preview Content */,
|
|
149
|
+
);
|
|
150
|
+
path = Example;
|
|
151
|
+
sourceTree = "<group>";
|
|
152
|
+
};
|
|
153
|
+
A63CC2A22944180D0022BA1A /* Preview Content */ = {
|
|
154
|
+
isa = PBXGroup;
|
|
155
|
+
children = (
|
|
156
|
+
A63CC2A32944180D0022BA1A /* Preview Assets.xcassets */,
|
|
157
|
+
);
|
|
158
|
+
path = "Preview Content";
|
|
159
|
+
sourceTree = "<group>";
|
|
160
|
+
};
|
|
161
|
+
A6611E53295AD85700C0E80F /* Popup */ = {
|
|
162
|
+
isa = PBXGroup;
|
|
163
|
+
children = (
|
|
164
|
+
A6611E51295AD6A100C0E80F /* ActionSheets.swift */,
|
|
165
|
+
A6611E4F295AD68B00C0E80F /* Popups.swift */,
|
|
166
|
+
A6611E4B295AD66100C0E80F /* Floats.swift */,
|
|
167
|
+
);
|
|
168
|
+
path = Popup;
|
|
169
|
+
sourceTree = "<group>";
|
|
170
|
+
};
|
|
171
|
+
A6798BCF29554E1B008A2A87 /* ViewModifier */ = {
|
|
172
|
+
isa = PBXGroup;
|
|
173
|
+
children = (
|
|
174
|
+
A6685455294E0FB800626C0D /* DarkViewModifier.swift */,
|
|
175
|
+
);
|
|
176
|
+
path = ViewModifier;
|
|
177
|
+
sourceTree = "<group>";
|
|
178
|
+
};
|
|
179
|
+
A6D46DC92949BB1E0022243D /* Resource */ = {
|
|
180
|
+
isa = PBXGroup;
|
|
181
|
+
children = (
|
|
182
|
+
A6798BD229554F01008A2A87 /* foundation.json */,
|
|
183
|
+
A6798BDA2955605F008A2A87 /* library.json */,
|
|
184
|
+
A6D7CE702949E892002D5762 /* SFProText-Black.ttf */,
|
|
185
|
+
A6D7CE6D2949E892002D5762 /* SFProText-Bold.ttf */,
|
|
186
|
+
A6D7CE6F2949E892002D5762 /* SFProText-Heavy.ttf */,
|
|
187
|
+
A6D7CE6B2949E892002D5762 /* SFProText-Light.ttf */,
|
|
188
|
+
A6D7CE732949E892002D5762 /* SFProText-Medium.ttf */,
|
|
189
|
+
A6D7CE722949E892002D5762 /* SFProText-Regular.ttf */,
|
|
190
|
+
A6D7CE6C2949E892002D5762 /* SFProText-Semibold.ttf */,
|
|
191
|
+
A6D7CE6E2949E892002D5762 /* SFProText-Thin.ttf */,
|
|
192
|
+
A6D7CE712949E892002D5762 /* SFProText-Ultralight.ttf */,
|
|
193
|
+
);
|
|
194
|
+
path = Resource;
|
|
195
|
+
sourceTree = "<group>";
|
|
196
|
+
};
|
|
197
|
+
A6E1EAB82952A32B00DE02CA /* Library */ = {
|
|
198
|
+
isa = PBXGroup;
|
|
199
|
+
children = (
|
|
200
|
+
A6E1EAB92952A35300DE02CA /* SwipeableDemo.swift */,
|
|
201
|
+
);
|
|
202
|
+
path = Library;
|
|
203
|
+
sourceTree = "<group>";
|
|
204
|
+
};
|
|
205
|
+
D4B19F29294C7EE50055EFC8 /* Foundation */ = {
|
|
206
|
+
isa = PBXGroup;
|
|
207
|
+
children = (
|
|
208
|
+
A6611E53295AD85700C0E80F /* Popup */,
|
|
209
|
+
D4B19F2A294C8BD70055EFC8 /* ButtonDemo.swift */,
|
|
210
|
+
A6798BDE2955A9AF008A2A87 /* PopupDemo.swift */,
|
|
211
|
+
A68B77E0294C8D180091EAB6 /* TypographyDemo.swift */,
|
|
212
|
+
);
|
|
213
|
+
path = Foundation;
|
|
214
|
+
sourceTree = "<group>";
|
|
215
|
+
};
|
|
216
|
+
/* End PBXGroup section */
|
|
217
|
+
|
|
218
|
+
/* Begin PBXNativeTarget section */
|
|
219
|
+
A63CC2972944180B0022BA1A /* Example */ = {
|
|
220
|
+
isa = PBXNativeTarget;
|
|
221
|
+
buildConfigurationList = A63CC2A72944180D0022BA1A /* Build configuration list for PBXNativeTarget "Example" */;
|
|
222
|
+
buildPhases = (
|
|
223
|
+
5D0C841373D4E87A11ED7781 /* [CP] Check Pods Manifest.lock */,
|
|
224
|
+
A63CC2942944180B0022BA1A /* Sources */,
|
|
225
|
+
A63CC2952944180B0022BA1A /* Frameworks */,
|
|
226
|
+
A63CC2962944180B0022BA1A /* Resources */,
|
|
227
|
+
);
|
|
228
|
+
buildRules = (
|
|
229
|
+
);
|
|
230
|
+
dependencies = (
|
|
231
|
+
);
|
|
232
|
+
name = Example;
|
|
233
|
+
productName = Example;
|
|
234
|
+
productReference = A63CC2982944180B0022BA1A /* Example.app */;
|
|
235
|
+
productType = "com.apple.product-type.application";
|
|
236
|
+
};
|
|
237
|
+
/* End PBXNativeTarget section */
|
|
238
|
+
|
|
239
|
+
/* Begin PBXProject section */
|
|
240
|
+
A63CC2902944180B0022BA1A /* Project object */ = {
|
|
241
|
+
isa = PBXProject;
|
|
242
|
+
attributes = {
|
|
243
|
+
BuildIndependentTargetsInParallel = 1;
|
|
244
|
+
LastSwiftUpdateCheck = 1410;
|
|
245
|
+
LastUpgradeCheck = 1410;
|
|
246
|
+
TargetAttributes = {
|
|
247
|
+
A63CC2972944180B0022BA1A = {
|
|
248
|
+
CreatedOnToolsVersion = 14.1;
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
buildConfigurationList = A63CC2932944180B0022BA1A /* Build configuration list for PBXProject "Example" */;
|
|
253
|
+
compatibilityVersion = "Xcode 13.0";
|
|
254
|
+
developmentRegion = en;
|
|
255
|
+
hasScannedForEncodings = 0;
|
|
256
|
+
knownRegions = (
|
|
257
|
+
en,
|
|
258
|
+
Base,
|
|
259
|
+
);
|
|
260
|
+
mainGroup = A63CC28F2944180B0022BA1A;
|
|
261
|
+
productRefGroup = A63CC2992944180B0022BA1A /* Products */;
|
|
262
|
+
projectDirPath = "";
|
|
263
|
+
projectRoot = "";
|
|
264
|
+
targets = (
|
|
265
|
+
A63CC2972944180B0022BA1A /* Example */,
|
|
266
|
+
);
|
|
267
|
+
};
|
|
268
|
+
/* End PBXProject section */
|
|
269
|
+
|
|
270
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
271
|
+
A63CC2962944180B0022BA1A /* Resources */ = {
|
|
272
|
+
isa = PBXResourcesBuildPhase;
|
|
273
|
+
buildActionMask = 2147483647;
|
|
274
|
+
files = (
|
|
275
|
+
A6D7CE792949E892002D5762 /* SFProText-Black.ttf in Resources */,
|
|
276
|
+
A6D7CE742949E892002D5762 /* SFProText-Light.ttf in Resources */,
|
|
277
|
+
A6D7CE752949E892002D5762 /* SFProText-Semibold.ttf in Resources */,
|
|
278
|
+
A6D7CE7C2949E892002D5762 /* SFProText-Medium.ttf in Resources */,
|
|
279
|
+
A6D7CE7B2949E892002D5762 /* SFProText-Regular.ttf in Resources */,
|
|
280
|
+
A6798BD329554F01008A2A87 /* foundation.json in Resources */,
|
|
281
|
+
A6D7CE782949E892002D5762 /* SFProText-Heavy.ttf in Resources */,
|
|
282
|
+
A6798BDB2955605F008A2A87 /* library.json in Resources */,
|
|
283
|
+
A6D7CE762949E892002D5762 /* SFProText-Bold.ttf in Resources */,
|
|
284
|
+
A6D7CE7A2949E892002D5762 /* SFProText-Ultralight.ttf in Resources */,
|
|
285
|
+
A63CC2A42944180D0022BA1A /* Preview Assets.xcassets in Resources */,
|
|
286
|
+
A63CC2A02944180D0022BA1A /* Assets.xcassets in Resources */,
|
|
287
|
+
A6D7CE772949E892002D5762 /* SFProText-Thin.ttf in Resources */,
|
|
288
|
+
);
|
|
289
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
290
|
+
};
|
|
291
|
+
/* End PBXResourcesBuildPhase section */
|
|
292
|
+
|
|
293
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
294
|
+
5D0C841373D4E87A11ED7781 /* [CP] Check Pods Manifest.lock */ = {
|
|
295
|
+
isa = PBXShellScriptBuildPhase;
|
|
296
|
+
buildActionMask = 2147483647;
|
|
297
|
+
files = (
|
|
298
|
+
);
|
|
299
|
+
inputFileListPaths = (
|
|
300
|
+
);
|
|
301
|
+
inputPaths = (
|
|
302
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
303
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
304
|
+
);
|
|
305
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
306
|
+
outputFileListPaths = (
|
|
307
|
+
);
|
|
308
|
+
outputPaths = (
|
|
309
|
+
"$(DERIVED_FILE_DIR)/Pods-Example-checkManifestLockResult.txt",
|
|
310
|
+
);
|
|
311
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
312
|
+
shellPath = /bin/sh;
|
|
313
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
314
|
+
showEnvVarsInLog = 0;
|
|
315
|
+
};
|
|
316
|
+
/* End PBXShellScriptBuildPhase section */
|
|
317
|
+
|
|
318
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
319
|
+
A63CC2942944180B0022BA1A /* Sources */ = {
|
|
320
|
+
isa = PBXSourcesBuildPhase;
|
|
321
|
+
buildActionMask = 2147483647;
|
|
322
|
+
files = (
|
|
323
|
+
A6611E4C295AD66100C0E80F /* Floats.swift in Sources */,
|
|
324
|
+
A6798BDF2955A9AF008A2A87 /* PopupDemo.swift in Sources */,
|
|
325
|
+
D4B19F2B294C8BD70055EFC8 /* ButtonDemo.swift in Sources */,
|
|
326
|
+
A60654E02948383F00D81339 /* Overview.swift in Sources */,
|
|
327
|
+
A6798BD729555216008A2A87 /* ComponentDetail.swift in Sources */,
|
|
328
|
+
A6798BDD295560C8008A2A87 /* Utils.swift in Sources */,
|
|
329
|
+
A6E318C4294632FF0008BCA5 /* Main.swift in Sources */,
|
|
330
|
+
A6611E50295AD68B00C0E80F /* Popups.swift in Sources */,
|
|
331
|
+
A6798BD129554E95008A2A87 /* ComponentModel.swift in Sources */,
|
|
332
|
+
A68B77E1294C8D180091EAB6 /* TypographyDemo.swift in Sources */,
|
|
333
|
+
A63CC29C2944180B0022BA1A /* ContentView.swift in Sources */,
|
|
334
|
+
A60654E229483B9100D81339 /* Foundation.swift in Sources */,
|
|
335
|
+
A6798BD5295551BF008A2A87 /* ComponentItem.swift in Sources */,
|
|
336
|
+
A60654E429483B9F00D81339 /* Library.swift in Sources */,
|
|
337
|
+
A6E1EABA2952A35300DE02CA /* SwipeableDemo.swift in Sources */,
|
|
338
|
+
A6611E52295AD6A200C0E80F /* ActionSheets.swift in Sources */,
|
|
339
|
+
A6685456294E0FB800626C0D /* DarkViewModifier.swift in Sources */,
|
|
340
|
+
);
|
|
341
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
342
|
+
};
|
|
343
|
+
/* End PBXSourcesBuildPhase section */
|
|
344
|
+
|
|
345
|
+
/* Begin XCBuildConfiguration section */
|
|
346
|
+
A63CC2A52944180D0022BA1A /* Debug */ = {
|
|
347
|
+
isa = XCBuildConfiguration;
|
|
348
|
+
buildSettings = {
|
|
349
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
350
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
351
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
352
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
|
|
353
|
+
CLANG_ENABLE_MODULES = YES;
|
|
354
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
355
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
356
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
357
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
358
|
+
CLANG_WARN_COMMA = YES;
|
|
359
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
360
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
361
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
362
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
363
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
364
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
365
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
366
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
367
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
368
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
369
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
370
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
371
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
372
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
373
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
374
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
375
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
376
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
377
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
378
|
+
COPY_PHASE_STRIP = NO;
|
|
379
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
380
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
381
|
+
ENABLE_TESTABILITY = YES;
|
|
382
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
383
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
384
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
385
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
386
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
387
|
+
"DEBUG=1",
|
|
388
|
+
"$(inherited)",
|
|
389
|
+
);
|
|
390
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
391
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
392
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
393
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
394
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
395
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
396
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
397
|
+
MTL_FAST_MATH = YES;
|
|
398
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
399
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
400
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
401
|
+
};
|
|
402
|
+
name = Debug;
|
|
403
|
+
};
|
|
404
|
+
A63CC2A62944180D0022BA1A /* Release */ = {
|
|
405
|
+
isa = XCBuildConfiguration;
|
|
406
|
+
buildSettings = {
|
|
407
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
408
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
409
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
410
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
|
|
411
|
+
CLANG_ENABLE_MODULES = YES;
|
|
412
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
413
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
414
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
415
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
416
|
+
CLANG_WARN_COMMA = YES;
|
|
417
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
418
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
419
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
420
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
421
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
422
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
423
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
424
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
425
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
426
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
427
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
428
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
429
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
430
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
431
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
432
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
433
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
434
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
435
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
436
|
+
COPY_PHASE_STRIP = NO;
|
|
437
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
438
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
439
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
440
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
441
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
442
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
443
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
444
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
445
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
446
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
447
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
448
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
449
|
+
MTL_FAST_MATH = YES;
|
|
450
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
451
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
452
|
+
};
|
|
453
|
+
name = Release;
|
|
454
|
+
};
|
|
455
|
+
A63CC2A82944180D0022BA1A /* Debug */ = {
|
|
456
|
+
isa = XCBuildConfiguration;
|
|
457
|
+
baseConfigurationReference = 92F011B07CB0D787E0F7AB88 /* Pods-Example.debug.xcconfig */;
|
|
458
|
+
buildSettings = {
|
|
459
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
460
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
461
|
+
CODE_SIGN_ENTITLEMENTS = Example/Example.entitlements;
|
|
462
|
+
CODE_SIGN_STYLE = Automatic;
|
|
463
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
464
|
+
DEVELOPMENT_ASSET_PATHS = "\"Example/Preview Content\"";
|
|
465
|
+
DEVELOPMENT_TEAM = 6GV49KUGJV;
|
|
466
|
+
ENABLE_HARDENED_RUNTIME = YES;
|
|
467
|
+
ENABLE_PREVIEWS = YES;
|
|
468
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
469
|
+
INFOPLIST_FILE = Example/Info.plist;
|
|
470
|
+
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
|
|
471
|
+
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
|
|
472
|
+
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
|
|
473
|
+
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
|
|
474
|
+
"INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
|
|
475
|
+
"INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
|
|
476
|
+
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
|
|
477
|
+
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
|
|
478
|
+
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
|
|
479
|
+
INFOPLIST_KEY_UIStatusBarStyle = UIStatusBarStyleDefault;
|
|
480
|
+
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
|
|
481
|
+
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
|
|
482
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
|
|
483
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
484
|
+
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
|
|
485
|
+
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
|
|
486
|
+
MACOSX_DEPLOYMENT_TARGET = 12.0;
|
|
487
|
+
MARKETING_VERSION = 1.0;
|
|
488
|
+
PRODUCT_BUNDLE_IDENTIFIER = vn.momo.platform.uikits.Example;
|
|
489
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
490
|
+
SDKROOT = iphoneos;
|
|
491
|
+
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos";
|
|
492
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
493
|
+
SWIFT_VERSION = 5.0;
|
|
494
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
495
|
+
};
|
|
496
|
+
name = Debug;
|
|
497
|
+
};
|
|
498
|
+
A63CC2A92944180D0022BA1A /* Release */ = {
|
|
499
|
+
isa = XCBuildConfiguration;
|
|
500
|
+
baseConfigurationReference = 5F23D0ED8E6EC599BDAB8D3E /* Pods-Example.release.xcconfig */;
|
|
501
|
+
buildSettings = {
|
|
502
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
503
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
504
|
+
CODE_SIGN_ENTITLEMENTS = Example/Example.entitlements;
|
|
505
|
+
CODE_SIGN_STYLE = Automatic;
|
|
506
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
507
|
+
DEVELOPMENT_ASSET_PATHS = "\"Example/Preview Content\"";
|
|
508
|
+
DEVELOPMENT_TEAM = 6GV49KUGJV;
|
|
509
|
+
ENABLE_HARDENED_RUNTIME = YES;
|
|
510
|
+
ENABLE_PREVIEWS = YES;
|
|
511
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
512
|
+
INFOPLIST_FILE = Example/Info.plist;
|
|
513
|
+
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES;
|
|
514
|
+
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
|
|
515
|
+
"INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
|
|
516
|
+
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
|
|
517
|
+
"INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
|
|
518
|
+
"INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
|
|
519
|
+
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
|
|
520
|
+
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
|
|
521
|
+
"INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
|
|
522
|
+
INFOPLIST_KEY_UIStatusBarStyle = UIStatusBarStyleDefault;
|
|
523
|
+
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
|
|
524
|
+
"INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
|
|
525
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
|
|
526
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
527
|
+
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
|
|
528
|
+
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
|
|
529
|
+
MACOSX_DEPLOYMENT_TARGET = 12.0;
|
|
530
|
+
MARKETING_VERSION = 1.0;
|
|
531
|
+
PRODUCT_BUNDLE_IDENTIFIER = vn.momo.platform.uikits.Example;
|
|
532
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
533
|
+
SDKROOT = iphoneos;
|
|
534
|
+
SUPPORTED_PLATFORMS = "iphonesimulator iphoneos";
|
|
535
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
536
|
+
SWIFT_VERSION = 5.0;
|
|
537
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
538
|
+
};
|
|
539
|
+
name = Release;
|
|
540
|
+
};
|
|
541
|
+
/* End XCBuildConfiguration section */
|
|
542
|
+
|
|
543
|
+
/* Begin XCConfigurationList section */
|
|
544
|
+
A63CC2932944180B0022BA1A /* Build configuration list for PBXProject "Example" */ = {
|
|
545
|
+
isa = XCConfigurationList;
|
|
546
|
+
buildConfigurations = (
|
|
547
|
+
A63CC2A52944180D0022BA1A /* Debug */,
|
|
548
|
+
A63CC2A62944180D0022BA1A /* Release */,
|
|
549
|
+
);
|
|
550
|
+
defaultConfigurationIsVisible = 0;
|
|
551
|
+
defaultConfigurationName = Release;
|
|
552
|
+
};
|
|
553
|
+
A63CC2A72944180D0022BA1A /* Build configuration list for PBXNativeTarget "Example" */ = {
|
|
554
|
+
isa = XCConfigurationList;
|
|
555
|
+
buildConfigurations = (
|
|
556
|
+
A63CC2A82944180D0022BA1A /* Debug */,
|
|
557
|
+
A63CC2A92944180D0022BA1A /* Release */,
|
|
558
|
+
);
|
|
559
|
+
defaultConfigurationIsVisible = 0;
|
|
560
|
+
defaultConfigurationName = Release;
|
|
561
|
+
};
|
|
562
|
+
/* End XCConfigurationList section */
|
|
563
|
+
};
|
|
564
|
+
rootObject = A63CC2902944180B0022BA1A /* Project object */;
|
|
565
|
+
}
|
|
Binary file
|
package/example/ios/Example.xcodeproj/xcuserdata/wem.xcuserdatad/xcschemes/xcschememanagement.plist
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
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>2</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
</dict>
|
|
13
|
+
</dict>
|
|
14
|
+
</plist>
|
package/example/ios/Example.xcworkspace/xcuserdata/wem.xcuserdatad/UserInterfaceState.xcuserstate
ADDED
|
Binary file
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- MoMoUIKits (1.0.0)
|
|
3
|
+
|
|
4
|
+
DEPENDENCIES:
|
|
5
|
+
- MoMoUIKits (from `../../ios/native-kits.podspec`)
|
|
6
|
+
|
|
7
|
+
EXTERNAL SOURCES:
|
|
8
|
+
MoMoUIKits:
|
|
9
|
+
:path: "../../ios/native-kits.podspec"
|
|
10
|
+
|
|
11
|
+
SPEC CHECKSUMS:
|
|
12
|
+
MoMoUIKits: 6bff4fb02c5b9dc19f6b9bd2f5b75f7f5859738b
|
|
13
|
+
|
|
14
|
+
PODFILE CHECKSUM: 6b679c2d7f055aa0de2f49956169bb7e720995eb
|
|
15
|
+
|
|
16
|
+
COCOAPODS: 1.11.3
|