@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,661 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 55;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
003204A980C019B9FD06CAAD965C196B /* Pods-Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A10118860486B1C21B46B8EC8C08425 /* Pods-Example-dummy.m */; };
|
|
11
|
+
0B21DEFEC109475A8D496624402B71DF /* KeyboardButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = C18B373015D5399B8E69959093CCD0FB /* KeyboardButton.swift */; };
|
|
12
|
+
1E3C5D013086CFD5439183D5D5B183C4 /* SwipeCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 212940416F73E8FBB998485E0AFF326C /* SwipeCell.swift */; };
|
|
13
|
+
1F200129B6777A8FE10A8A1269633FD9 /* Colors.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10C423292135D5BE09EB2FCC32CC9652 /* Colors.swift */; };
|
|
14
|
+
262493EB50107E29944D90FDC3BD2AEE /* OTPKeyboard.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CA2C793F71618F2359DA22D39FE3967 /* OTPKeyboard.swift */; };
|
|
15
|
+
2E1A8F8F0C335318270D1A99F474F642 /* Pods-Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 156BF54520F2121642B61B54902E7808 /* Pods-Example-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; };
|
|
16
|
+
53EF31D49FC6A4BB21A36917A08A6EBC /* Radius.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8AC0FE454F2695901B6BF956314EE6F /* Radius.swift */; };
|
|
17
|
+
5A6D31F654AFC80FE4155D1DC03D6787 /* MoMoUIKits-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DCBA627E304F3355530BF6E20131DB54 /* MoMoUIKits-dummy.m */; };
|
|
18
|
+
8DD109D7D6294BF144A4339DAC9E51D6 /* SwipeCellModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5F8F97DC2316E5DD6362391102A4B8F /* SwipeCellModel.swift */; };
|
|
19
|
+
A6611E46295AC15900C0E80F /* Modifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6611E45295AC15900C0E80F /* Modifiers.swift */; };
|
|
20
|
+
A6611E48295AC17900C0E80F /* PopupView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6611E47295AC17900C0E80F /* PopupView.swift */; };
|
|
21
|
+
A6611E4A295AC19900C0E80F /* Utils.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6611E49295AC19900C0E80F /* Utils.swift */; };
|
|
22
|
+
AE3E756C1578EB0EFE4D5449D1EA49D6 /* Typography.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61317E2E9B5977042B3DC1E5987AC81A /* Typography.swift */; };
|
|
23
|
+
B458D14B7E0A4503018E7DAF3252D06D /* Button.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60D0994557490257D063361AC079E5CD /* Button.swift */; };
|
|
24
|
+
BB722F8EDB48B1E1FD4BA366ED8C1E16 /* Color++.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25186A0535A7F65D114CF19A90FE3A3F /* Color++.swift */; };
|
|
25
|
+
E167D85A046B889FD0F0F2FF1D7D56E6 /* Spacing.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECA4E4C889FB06C9202F0E573C02B0C2 /* Spacing.swift */; };
|
|
26
|
+
F319EC2F1B97D3CBDC8E6535EC7B007E /* MoMoUIKits-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FFD158D9D6A68E78D0B249AAFC345AB1 /* MoMoUIKits-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; };
|
|
27
|
+
/* End PBXBuildFile section */
|
|
28
|
+
|
|
29
|
+
/* Begin PBXContainerItemProxy section */
|
|
30
|
+
3034D163EF59BFB79C0479D799AECAD1 /* PBXContainerItemProxy */ = {
|
|
31
|
+
isa = PBXContainerItemProxy;
|
|
32
|
+
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
33
|
+
proxyType = 1;
|
|
34
|
+
remoteGlobalIDString = 3B6FB503A75BF5BC1FA6F30BC06B9D28;
|
|
35
|
+
remoteInfo = MoMoUIKits;
|
|
36
|
+
};
|
|
37
|
+
/* End PBXContainerItemProxy section */
|
|
38
|
+
|
|
39
|
+
/* Begin PBXFileReference section */
|
|
40
|
+
0B52BC535E9265BA298B4A6A20315825 /* MoMoUIKits.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MoMoUIKits.modulemap; sourceTree = "<group>"; };
|
|
41
|
+
10C423292135D5BE09EB2FCC32CC9652 /* Colors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Colors.swift; sourceTree = "<group>"; };
|
|
42
|
+
156BF54520F2121642B61B54902E7808 /* Pods-Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Example-umbrella.h"; sourceTree = "<group>"; };
|
|
43
|
+
171654756F64621B847DF148F4D9A154 /* native-kits.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = "native-kits.podspec"; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
|
|
44
|
+
1F667CC0E19EAF34E5A4119E2121F585 /* Pods-Example */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-Example"; path = "libPods-Example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
45
|
+
212940416F73E8FBB998485E0AFF326C /* SwipeCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeCell.swift; sourceTree = "<group>"; };
|
|
46
|
+
25186A0535A7F65D114CF19A90FE3A3F /* Color++.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = "Color++.swift"; sourceTree = "<group>"; };
|
|
47
|
+
3D6746E07DAA8BF046F4230C613B314E /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example.debug.xcconfig"; sourceTree = "<group>"; };
|
|
48
|
+
49F2DEC6074F594E9BAD0D381EC98427 /* MoMoUIKits.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MoMoUIKits.release.xcconfig; sourceTree = "<group>"; };
|
|
49
|
+
53A341026EB50DB44BD6D7600982D503 /* Pods-Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Example.modulemap"; sourceTree = "<group>"; };
|
|
50
|
+
5A10118860486B1C21B46B8EC8C08425 /* Pods-Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Example-dummy.m"; sourceTree = "<group>"; };
|
|
51
|
+
60D0994557490257D063361AC079E5CD /* Button.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Button.swift; sourceTree = "<group>"; };
|
|
52
|
+
61317E2E9B5977042B3DC1E5987AC81A /* Typography.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Typography.swift; sourceTree = "<group>"; };
|
|
53
|
+
6CA2C793F71618F2359DA22D39FE3967 /* OTPKeyboard.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = OTPKeyboard.swift; sourceTree = "<group>"; };
|
|
54
|
+
763B5F5D6D7214D56B655DE87625A480 /* Pods-Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Example-acknowledgements.markdown"; sourceTree = "<group>"; };
|
|
55
|
+
84A0A397FE71619A7A7FC985CBD89C11 /* MoMoUIKits */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = MoMoUIKits; path = libMoMoUIKits.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
56
|
+
86478E4156A5F59A4A2984B22CB9E625 /* MoMoUIKits-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MoMoUIKits-prefix.pch"; sourceTree = "<group>"; };
|
|
57
|
+
9A3D778F0C0BA5A11B556A6026C20B46 /* Pods-Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Example-acknowledgements.plist"; sourceTree = "<group>"; };
|
|
58
|
+
9A8BC4CE72A41A90356C6098C5A88AF7 /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example.release.xcconfig"; sourceTree = "<group>"; };
|
|
59
|
+
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
|
|
60
|
+
A6611E45295AC15900C0E80F /* Modifiers.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Modifiers.swift; sourceTree = "<group>"; };
|
|
61
|
+
A6611E47295AC17900C0E80F /* PopupView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PopupView.swift; sourceTree = "<group>"; };
|
|
62
|
+
A6611E49295AC19900C0E80F /* Utils.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Utils.swift; sourceTree = "<group>"; };
|
|
63
|
+
A8AC0FE454F2695901B6BF956314EE6F /* Radius.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Radius.swift; sourceTree = "<group>"; };
|
|
64
|
+
B5F8F97DC2316E5DD6362391102A4B8F /* SwipeCellModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SwipeCellModel.swift; sourceTree = "<group>"; };
|
|
65
|
+
C18B373015D5399B8E69959093CCD0FB /* KeyboardButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = KeyboardButton.swift; sourceTree = "<group>"; };
|
|
66
|
+
DCBA627E304F3355530BF6E20131DB54 /* MoMoUIKits-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MoMoUIKits-dummy.m"; sourceTree = "<group>"; };
|
|
67
|
+
DD0D979F7C210B4C1FA1D8D1F6A9DB20 /* MoMoUIKits.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MoMoUIKits.debug.xcconfig; sourceTree = "<group>"; };
|
|
68
|
+
ECA4E4C889FB06C9202F0E573C02B0C2 /* Spacing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Spacing.swift; sourceTree = "<group>"; };
|
|
69
|
+
FFD158D9D6A68E78D0B249AAFC345AB1 /* MoMoUIKits-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MoMoUIKits-umbrella.h"; sourceTree = "<group>"; };
|
|
70
|
+
/* End PBXFileReference section */
|
|
71
|
+
|
|
72
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
73
|
+
863E190B5A113B3CAF439006888C8C41 /* Frameworks */ = {
|
|
74
|
+
isa = PBXFrameworksBuildPhase;
|
|
75
|
+
buildActionMask = 2147483647;
|
|
76
|
+
files = (
|
|
77
|
+
);
|
|
78
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
79
|
+
};
|
|
80
|
+
A546E22496E7C18294968A2EAAFF0366 /* Frameworks */ = {
|
|
81
|
+
isa = PBXFrameworksBuildPhase;
|
|
82
|
+
buildActionMask = 2147483647;
|
|
83
|
+
files = (
|
|
84
|
+
);
|
|
85
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
86
|
+
};
|
|
87
|
+
/* End PBXFrameworksBuildPhase section */
|
|
88
|
+
|
|
89
|
+
/* Begin PBXGroup section */
|
|
90
|
+
07915859E36D3F20F726FEEF675B0F82 /* OTPKeyboard */ = {
|
|
91
|
+
isa = PBXGroup;
|
|
92
|
+
children = (
|
|
93
|
+
C18B373015D5399B8E69959093CCD0FB /* KeyboardButton.swift */,
|
|
94
|
+
6CA2C793F71618F2359DA22D39FE3967 /* OTPKeyboard.swift */,
|
|
95
|
+
);
|
|
96
|
+
path = OTPKeyboard;
|
|
97
|
+
sourceTree = "<group>";
|
|
98
|
+
};
|
|
99
|
+
0E71B765F53B9C40B5F31DA7A439E4E3 /* Button */ = {
|
|
100
|
+
isa = PBXGroup;
|
|
101
|
+
children = (
|
|
102
|
+
60D0994557490257D063361AC079E5CD /* Button.swift */,
|
|
103
|
+
);
|
|
104
|
+
path = Button;
|
|
105
|
+
sourceTree = "<group>";
|
|
106
|
+
};
|
|
107
|
+
1F0051A2D63580737CFE8AD2C9683143 /* Popup */ = {
|
|
108
|
+
isa = PBXGroup;
|
|
109
|
+
children = (
|
|
110
|
+
A6611E45295AC15900C0E80F /* Modifiers.swift */,
|
|
111
|
+
A6611E47295AC17900C0E80F /* PopupView.swift */,
|
|
112
|
+
A6611E49295AC19900C0E80F /* Utils.swift */,
|
|
113
|
+
);
|
|
114
|
+
path = Popup;
|
|
115
|
+
sourceTree = "<group>";
|
|
116
|
+
};
|
|
117
|
+
45BF6390E4DB7E143C827E9EE4118525 /* Targets Support Files */ = {
|
|
118
|
+
isa = PBXGroup;
|
|
119
|
+
children = (
|
|
120
|
+
E58C35B79B0E723B7230CF24882E6121 /* Pods-Example */,
|
|
121
|
+
);
|
|
122
|
+
name = "Targets Support Files";
|
|
123
|
+
sourceTree = "<group>";
|
|
124
|
+
};
|
|
125
|
+
7482AEE0106449F8824235DD44CAF3D0 /* Development Pods */ = {
|
|
126
|
+
isa = PBXGroup;
|
|
127
|
+
children = (
|
|
128
|
+
B38830B955002700E0DE0ECC82BFAD9B /* MoMoUIKits */,
|
|
129
|
+
);
|
|
130
|
+
name = "Development Pods";
|
|
131
|
+
sourceTree = "<group>";
|
|
132
|
+
};
|
|
133
|
+
8A8FF616665ECE13FC33376A162EA854 /* Extensions */ = {
|
|
134
|
+
isa = PBXGroup;
|
|
135
|
+
children = (
|
|
136
|
+
25186A0535A7F65D114CF19A90FE3A3F /* Color++.swift */,
|
|
137
|
+
);
|
|
138
|
+
path = Extensions;
|
|
139
|
+
sourceTree = "<group>";
|
|
140
|
+
};
|
|
141
|
+
941A8FD4D1CA7D286EBB68E0F9D97AC1 /* Typography */ = {
|
|
142
|
+
isa = PBXGroup;
|
|
143
|
+
children = (
|
|
144
|
+
61317E2E9B5977042B3DC1E5987AC81A /* Typography.swift */,
|
|
145
|
+
);
|
|
146
|
+
path = Typography;
|
|
147
|
+
sourceTree = "<group>";
|
|
148
|
+
};
|
|
149
|
+
B38830B955002700E0DE0ECC82BFAD9B /* MoMoUIKits */ = {
|
|
150
|
+
isa = PBXGroup;
|
|
151
|
+
children = (
|
|
152
|
+
0E71B765F53B9C40B5F31DA7A439E4E3 /* Button */,
|
|
153
|
+
BCDF6F7B6CF49339515972F85C144514 /* Colors+Spacing */,
|
|
154
|
+
8A8FF616665ECE13FC33376A162EA854 /* Extensions */,
|
|
155
|
+
07915859E36D3F20F726FEEF675B0F82 /* OTPKeyboard */,
|
|
156
|
+
CFAC6016B09FAD3302836EF0FCB65832 /* Pod */,
|
|
157
|
+
1F0051A2D63580737CFE8AD2C9683143 /* Popup */,
|
|
158
|
+
D49CCDBEA7E3BEE32D6E42E4B93C4971 /* Support Files */,
|
|
159
|
+
F9E2AEB70E56826D40BCEDE07A937D10 /* Swipeable */,
|
|
160
|
+
941A8FD4D1CA7D286EBB68E0F9D97AC1 /* Typography */,
|
|
161
|
+
);
|
|
162
|
+
name = MoMoUIKits;
|
|
163
|
+
path = ../../../ios;
|
|
164
|
+
sourceTree = "<group>";
|
|
165
|
+
};
|
|
166
|
+
BCDF6F7B6CF49339515972F85C144514 /* Colors+Spacing */ = {
|
|
167
|
+
isa = PBXGroup;
|
|
168
|
+
children = (
|
|
169
|
+
10C423292135D5BE09EB2FCC32CC9652 /* Colors.swift */,
|
|
170
|
+
A8AC0FE454F2695901B6BF956314EE6F /* Radius.swift */,
|
|
171
|
+
ECA4E4C889FB06C9202F0E573C02B0C2 /* Spacing.swift */,
|
|
172
|
+
);
|
|
173
|
+
path = "Colors+Spacing";
|
|
174
|
+
sourceTree = "<group>";
|
|
175
|
+
};
|
|
176
|
+
CF1408CF629C7361332E53B88F7BD30C = {
|
|
177
|
+
isa = PBXGroup;
|
|
178
|
+
children = (
|
|
179
|
+
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
|
|
180
|
+
7482AEE0106449F8824235DD44CAF3D0 /* Development Pods */,
|
|
181
|
+
D89477F20FB1DE18A04690586D7808C4 /* Frameworks */,
|
|
182
|
+
D996AE695307A9427DA68907727FC915 /* Products */,
|
|
183
|
+
45BF6390E4DB7E143C827E9EE4118525 /* Targets Support Files */,
|
|
184
|
+
);
|
|
185
|
+
sourceTree = "<group>";
|
|
186
|
+
};
|
|
187
|
+
CFAC6016B09FAD3302836EF0FCB65832 /* Pod */ = {
|
|
188
|
+
isa = PBXGroup;
|
|
189
|
+
children = (
|
|
190
|
+
171654756F64621B847DF148F4D9A154 /* native-kits.podspec */,
|
|
191
|
+
);
|
|
192
|
+
name = Pod;
|
|
193
|
+
sourceTree = "<group>";
|
|
194
|
+
};
|
|
195
|
+
D49CCDBEA7E3BEE32D6E42E4B93C4971 /* Support Files */ = {
|
|
196
|
+
isa = PBXGroup;
|
|
197
|
+
children = (
|
|
198
|
+
0B52BC535E9265BA298B4A6A20315825 /* MoMoUIKits.modulemap */,
|
|
199
|
+
DCBA627E304F3355530BF6E20131DB54 /* MoMoUIKits-dummy.m */,
|
|
200
|
+
86478E4156A5F59A4A2984B22CB9E625 /* MoMoUIKits-prefix.pch */,
|
|
201
|
+
FFD158D9D6A68E78D0B249AAFC345AB1 /* MoMoUIKits-umbrella.h */,
|
|
202
|
+
DD0D979F7C210B4C1FA1D8D1F6A9DB20 /* MoMoUIKits.debug.xcconfig */,
|
|
203
|
+
49F2DEC6074F594E9BAD0D381EC98427 /* MoMoUIKits.release.xcconfig */,
|
|
204
|
+
);
|
|
205
|
+
name = "Support Files";
|
|
206
|
+
path = "../example/ios/Pods/Target Support Files/MoMoUIKits";
|
|
207
|
+
sourceTree = "<group>";
|
|
208
|
+
};
|
|
209
|
+
D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = {
|
|
210
|
+
isa = PBXGroup;
|
|
211
|
+
children = (
|
|
212
|
+
);
|
|
213
|
+
name = Frameworks;
|
|
214
|
+
sourceTree = "<group>";
|
|
215
|
+
};
|
|
216
|
+
D996AE695307A9427DA68907727FC915 /* Products */ = {
|
|
217
|
+
isa = PBXGroup;
|
|
218
|
+
children = (
|
|
219
|
+
84A0A397FE71619A7A7FC985CBD89C11 /* MoMoUIKits */,
|
|
220
|
+
1F667CC0E19EAF34E5A4119E2121F585 /* Pods-Example */,
|
|
221
|
+
);
|
|
222
|
+
name = Products;
|
|
223
|
+
sourceTree = "<group>";
|
|
224
|
+
};
|
|
225
|
+
E58C35B79B0E723B7230CF24882E6121 /* Pods-Example */ = {
|
|
226
|
+
isa = PBXGroup;
|
|
227
|
+
children = (
|
|
228
|
+
53A341026EB50DB44BD6D7600982D503 /* Pods-Example.modulemap */,
|
|
229
|
+
763B5F5D6D7214D56B655DE87625A480 /* Pods-Example-acknowledgements.markdown */,
|
|
230
|
+
9A3D778F0C0BA5A11B556A6026C20B46 /* Pods-Example-acknowledgements.plist */,
|
|
231
|
+
5A10118860486B1C21B46B8EC8C08425 /* Pods-Example-dummy.m */,
|
|
232
|
+
156BF54520F2121642B61B54902E7808 /* Pods-Example-umbrella.h */,
|
|
233
|
+
3D6746E07DAA8BF046F4230C613B314E /* Pods-Example.debug.xcconfig */,
|
|
234
|
+
9A8BC4CE72A41A90356C6098C5A88AF7 /* Pods-Example.release.xcconfig */,
|
|
235
|
+
);
|
|
236
|
+
name = "Pods-Example";
|
|
237
|
+
path = "Target Support Files/Pods-Example";
|
|
238
|
+
sourceTree = "<group>";
|
|
239
|
+
};
|
|
240
|
+
F9E2AEB70E56826D40BCEDE07A937D10 /* Swipeable */ = {
|
|
241
|
+
isa = PBXGroup;
|
|
242
|
+
children = (
|
|
243
|
+
212940416F73E8FBB998485E0AFF326C /* SwipeCell.swift */,
|
|
244
|
+
B5F8F97DC2316E5DD6362391102A4B8F /* SwipeCellModel.swift */,
|
|
245
|
+
);
|
|
246
|
+
path = Swipeable;
|
|
247
|
+
sourceTree = "<group>";
|
|
248
|
+
};
|
|
249
|
+
/* End PBXGroup section */
|
|
250
|
+
|
|
251
|
+
/* Begin PBXHeadersBuildPhase section */
|
|
252
|
+
865C33237D5FA8EDE59E05C5C2AC594D /* Headers */ = {
|
|
253
|
+
isa = PBXHeadersBuildPhase;
|
|
254
|
+
buildActionMask = 2147483647;
|
|
255
|
+
files = (
|
|
256
|
+
F319EC2F1B97D3CBDC8E6535EC7B007E /* MoMoUIKits-umbrella.h in Headers */,
|
|
257
|
+
);
|
|
258
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
259
|
+
};
|
|
260
|
+
D475681BE50C4C3544C3BAF337A81B6B /* Headers */ = {
|
|
261
|
+
isa = PBXHeadersBuildPhase;
|
|
262
|
+
buildActionMask = 2147483647;
|
|
263
|
+
files = (
|
|
264
|
+
2E1A8F8F0C335318270D1A99F474F642 /* Pods-Example-umbrella.h in Headers */,
|
|
265
|
+
);
|
|
266
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
267
|
+
};
|
|
268
|
+
/* End PBXHeadersBuildPhase section */
|
|
269
|
+
|
|
270
|
+
/* Begin PBXNativeTarget section */
|
|
271
|
+
0AEE99A309977BD12A049FF48AF9BA4B /* Pods-Example */ = {
|
|
272
|
+
isa = PBXNativeTarget;
|
|
273
|
+
buildConfigurationList = 874541D29042D43B6A1ECF79C14E656F /* Build configuration list for PBXNativeTarget "Pods-Example" */;
|
|
274
|
+
buildPhases = (
|
|
275
|
+
D475681BE50C4C3544C3BAF337A81B6B /* Headers */,
|
|
276
|
+
A3E2906B9F98F62EF836163C43690A65 /* Sources */,
|
|
277
|
+
863E190B5A113B3CAF439006888C8C41 /* Frameworks */,
|
|
278
|
+
);
|
|
279
|
+
buildRules = (
|
|
280
|
+
);
|
|
281
|
+
dependencies = (
|
|
282
|
+
41212DD354F1F8DFDF380F41C4F1FDE2 /* PBXTargetDependency */,
|
|
283
|
+
);
|
|
284
|
+
name = "Pods-Example";
|
|
285
|
+
productName = "Pods-Example";
|
|
286
|
+
productReference = 1F667CC0E19EAF34E5A4119E2121F585 /* Pods-Example */;
|
|
287
|
+
productType = "com.apple.product-type.library.static";
|
|
288
|
+
};
|
|
289
|
+
3B6FB503A75BF5BC1FA6F30BC06B9D28 /* MoMoUIKits */ = {
|
|
290
|
+
isa = PBXNativeTarget;
|
|
291
|
+
buildConfigurationList = 83720E5D128E7667C073401F1C057593 /* Build configuration list for PBXNativeTarget "MoMoUIKits" */;
|
|
292
|
+
buildPhases = (
|
|
293
|
+
865C33237D5FA8EDE59E05C5C2AC594D /* Headers */,
|
|
294
|
+
0321ACEC7192E6932FEC4E465CF760CB /* Sources */,
|
|
295
|
+
A546E22496E7C18294968A2EAAFF0366 /* Frameworks */,
|
|
296
|
+
9D30F26EBF837B7119F77AF363EDB6A2 /* Copy generated compatibility header */,
|
|
297
|
+
);
|
|
298
|
+
buildRules = (
|
|
299
|
+
);
|
|
300
|
+
dependencies = (
|
|
301
|
+
);
|
|
302
|
+
name = MoMoUIKits;
|
|
303
|
+
productName = MoMoUIKits;
|
|
304
|
+
productReference = 84A0A397FE71619A7A7FC985CBD89C11 /* MoMoUIKits */;
|
|
305
|
+
productType = "com.apple.product-type.library.static";
|
|
306
|
+
};
|
|
307
|
+
/* End PBXNativeTarget section */
|
|
308
|
+
|
|
309
|
+
/* Begin PBXProject section */
|
|
310
|
+
BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
|
|
311
|
+
isa = PBXProject;
|
|
312
|
+
attributes = {
|
|
313
|
+
LastSwiftUpdateCheck = 1300;
|
|
314
|
+
LastUpgradeCheck = 1300;
|
|
315
|
+
};
|
|
316
|
+
buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
|
|
317
|
+
compatibilityVersion = "Xcode 13.0";
|
|
318
|
+
developmentRegion = en;
|
|
319
|
+
hasScannedForEncodings = 0;
|
|
320
|
+
knownRegions = (
|
|
321
|
+
Base,
|
|
322
|
+
en,
|
|
323
|
+
);
|
|
324
|
+
mainGroup = CF1408CF629C7361332E53B88F7BD30C;
|
|
325
|
+
productRefGroup = D996AE695307A9427DA68907727FC915 /* Products */;
|
|
326
|
+
projectDirPath = "";
|
|
327
|
+
projectRoot = "";
|
|
328
|
+
targets = (
|
|
329
|
+
3B6FB503A75BF5BC1FA6F30BC06B9D28 /* MoMoUIKits */,
|
|
330
|
+
0AEE99A309977BD12A049FF48AF9BA4B /* Pods-Example */,
|
|
331
|
+
);
|
|
332
|
+
};
|
|
333
|
+
/* End PBXProject section */
|
|
334
|
+
|
|
335
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
336
|
+
9D30F26EBF837B7119F77AF363EDB6A2 /* Copy generated compatibility header */ = {
|
|
337
|
+
isa = PBXShellScriptBuildPhase;
|
|
338
|
+
buildActionMask = 2147483647;
|
|
339
|
+
files = (
|
|
340
|
+
);
|
|
341
|
+
inputFileListPaths = (
|
|
342
|
+
);
|
|
343
|
+
inputPaths = (
|
|
344
|
+
"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h",
|
|
345
|
+
"${PODS_ROOT}/Headers/Public/MoMoUIKits/MoMoUIKits.modulemap",
|
|
346
|
+
"${PODS_ROOT}/Headers/Public/MoMoUIKits/MoMoUIKits-umbrella.h",
|
|
347
|
+
);
|
|
348
|
+
name = "Copy generated compatibility header";
|
|
349
|
+
outputFileListPaths = (
|
|
350
|
+
);
|
|
351
|
+
outputPaths = (
|
|
352
|
+
"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap",
|
|
353
|
+
"${BUILT_PRODUCTS_DIR}/MoMoUIKits-umbrella.h",
|
|
354
|
+
"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h",
|
|
355
|
+
);
|
|
356
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
357
|
+
shellPath = /bin/sh;
|
|
358
|
+
shellScript = "COMPATIBILITY_HEADER_PATH=\"${BUILT_PRODUCTS_DIR}/Swift Compatibility Header/${PRODUCT_MODULE_NAME}-Swift.h\"\nMODULE_MAP_PATH=\"${BUILT_PRODUCTS_DIR}/${PRODUCT_MODULE_NAME}.modulemap\"\n\nditto \"${DERIVED_SOURCES_DIR}/${PRODUCT_MODULE_NAME}-Swift.h\" \"${COMPATIBILITY_HEADER_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/MoMoUIKits/MoMoUIKits.modulemap\" \"${MODULE_MAP_PATH}\"\nditto \"${PODS_ROOT}/Headers/Public/MoMoUIKits/MoMoUIKits-umbrella.h\" \"${BUILT_PRODUCTS_DIR}\"\nprintf \"\\n\\nmodule ${PRODUCT_MODULE_NAME}.Swift {\\n header \\\"${COMPATIBILITY_HEADER_PATH}\\\"\\n requires objc\\n}\\n\" >> \"${MODULE_MAP_PATH}\"\n";
|
|
359
|
+
};
|
|
360
|
+
/* End PBXShellScriptBuildPhase section */
|
|
361
|
+
|
|
362
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
363
|
+
0321ACEC7192E6932FEC4E465CF760CB /* Sources */ = {
|
|
364
|
+
isa = PBXSourcesBuildPhase;
|
|
365
|
+
buildActionMask = 2147483647;
|
|
366
|
+
files = (
|
|
367
|
+
B458D14B7E0A4503018E7DAF3252D06D /* Button.swift in Sources */,
|
|
368
|
+
BB722F8EDB48B1E1FD4BA366ED8C1E16 /* Color++.swift in Sources */,
|
|
369
|
+
1F200129B6777A8FE10A8A1269633FD9 /* Colors.swift in Sources */,
|
|
370
|
+
A6611E4A295AC19900C0E80F /* Utils.swift in Sources */,
|
|
371
|
+
0B21DEFEC109475A8D496624402B71DF /* KeyboardButton.swift in Sources */,
|
|
372
|
+
A6611E46295AC15900C0E80F /* Modifiers.swift in Sources */,
|
|
373
|
+
5A6D31F654AFC80FE4155D1DC03D6787 /* MoMoUIKits-dummy.m in Sources */,
|
|
374
|
+
262493EB50107E29944D90FDC3BD2AEE /* OTPKeyboard.swift in Sources */,
|
|
375
|
+
53EF31D49FC6A4BB21A36917A08A6EBC /* Radius.swift in Sources */,
|
|
376
|
+
E167D85A046B889FD0F0F2FF1D7D56E6 /* Spacing.swift in Sources */,
|
|
377
|
+
1E3C5D013086CFD5439183D5D5B183C4 /* SwipeCell.swift in Sources */,
|
|
378
|
+
8DD109D7D6294BF144A4339DAC9E51D6 /* SwipeCellModel.swift in Sources */,
|
|
379
|
+
AE3E756C1578EB0EFE4D5449D1EA49D6 /* Typography.swift in Sources */,
|
|
380
|
+
A6611E48295AC17900C0E80F /* PopupView.swift in Sources */,
|
|
381
|
+
);
|
|
382
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
383
|
+
};
|
|
384
|
+
A3E2906B9F98F62EF836163C43690A65 /* Sources */ = {
|
|
385
|
+
isa = PBXSourcesBuildPhase;
|
|
386
|
+
buildActionMask = 2147483647;
|
|
387
|
+
files = (
|
|
388
|
+
003204A980C019B9FD06CAAD965C196B /* Pods-Example-dummy.m in Sources */,
|
|
389
|
+
);
|
|
390
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
391
|
+
};
|
|
392
|
+
/* End PBXSourcesBuildPhase section */
|
|
393
|
+
|
|
394
|
+
/* Begin PBXTargetDependency section */
|
|
395
|
+
41212DD354F1F8DFDF380F41C4F1FDE2 /* PBXTargetDependency */ = {
|
|
396
|
+
isa = PBXTargetDependency;
|
|
397
|
+
name = MoMoUIKits;
|
|
398
|
+
target = 3B6FB503A75BF5BC1FA6F30BC06B9D28 /* MoMoUIKits */;
|
|
399
|
+
targetProxy = 3034D163EF59BFB79C0479D799AECAD1 /* PBXContainerItemProxy */;
|
|
400
|
+
};
|
|
401
|
+
/* End PBXTargetDependency section */
|
|
402
|
+
|
|
403
|
+
/* Begin XCBuildConfiguration section */
|
|
404
|
+
233EF4CE8F87617E43A797421D413248 /* Debug */ = {
|
|
405
|
+
isa = XCBuildConfiguration;
|
|
406
|
+
baseConfigurationReference = DD0D979F7C210B4C1FA1D8D1F6A9DB20 /* MoMoUIKits.debug.xcconfig */;
|
|
407
|
+
buildSettings = {
|
|
408
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
409
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
410
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
411
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
412
|
+
GCC_PREFIX_HEADER = "Target Support Files/MoMoUIKits/MoMoUIKits-prefix.pch";
|
|
413
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
414
|
+
MODULEMAP_FILE = Headers/Public/MoMoUIKits/MoMoUIKits.modulemap;
|
|
415
|
+
OTHER_LDFLAGS = "";
|
|
416
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
417
|
+
PRIVATE_HEADERS_FOLDER_PATH = "";
|
|
418
|
+
PRODUCT_MODULE_NAME = MoMoUIKits;
|
|
419
|
+
PRODUCT_NAME = MoMoUIKits;
|
|
420
|
+
PUBLIC_HEADERS_FOLDER_PATH = "";
|
|
421
|
+
SDKROOT = iphoneos;
|
|
422
|
+
SKIP_INSTALL = YES;
|
|
423
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
424
|
+
SWIFT_VERSION = 5.0;
|
|
425
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
426
|
+
};
|
|
427
|
+
name = Debug;
|
|
428
|
+
};
|
|
429
|
+
3FFDF146EE6EA546A673212B3BEC82C0 /* Release */ = {
|
|
430
|
+
isa = XCBuildConfiguration;
|
|
431
|
+
baseConfigurationReference = 49F2DEC6074F594E9BAD0D381EC98427 /* MoMoUIKits.release.xcconfig */;
|
|
432
|
+
buildSettings = {
|
|
433
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
434
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
435
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
436
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
437
|
+
GCC_PREFIX_HEADER = "Target Support Files/MoMoUIKits/MoMoUIKits-prefix.pch";
|
|
438
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
439
|
+
MODULEMAP_FILE = Headers/Public/MoMoUIKits/MoMoUIKits.modulemap;
|
|
440
|
+
OTHER_LDFLAGS = "";
|
|
441
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
442
|
+
PRIVATE_HEADERS_FOLDER_PATH = "";
|
|
443
|
+
PRODUCT_MODULE_NAME = MoMoUIKits;
|
|
444
|
+
PRODUCT_NAME = MoMoUIKits;
|
|
445
|
+
PUBLIC_HEADERS_FOLDER_PATH = "";
|
|
446
|
+
SDKROOT = iphoneos;
|
|
447
|
+
SKIP_INSTALL = YES;
|
|
448
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) ";
|
|
449
|
+
SWIFT_VERSION = 5.0;
|
|
450
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
451
|
+
VALIDATE_PRODUCT = YES;
|
|
452
|
+
};
|
|
453
|
+
name = Release;
|
|
454
|
+
};
|
|
455
|
+
4BC7450F9457737EE3E637BA155B56F7 /* Debug */ = {
|
|
456
|
+
isa = XCBuildConfiguration;
|
|
457
|
+
buildSettings = {
|
|
458
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
459
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
460
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
461
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
462
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
463
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
464
|
+
CLANG_ENABLE_MODULES = YES;
|
|
465
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
466
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
467
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
468
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
469
|
+
CLANG_WARN_COMMA = YES;
|
|
470
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
471
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
472
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
473
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
474
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
475
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
476
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
477
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
478
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
479
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
480
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
481
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
482
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
483
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
484
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
485
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
486
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
487
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
488
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
489
|
+
COPY_PHASE_STRIP = NO;
|
|
490
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
491
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
492
|
+
ENABLE_TESTABILITY = YES;
|
|
493
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
494
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
495
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
496
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
497
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
498
|
+
"POD_CONFIGURATION_DEBUG=1",
|
|
499
|
+
"DEBUG=1",
|
|
500
|
+
"$(inherited)",
|
|
501
|
+
);
|
|
502
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
503
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
504
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
505
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
506
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
507
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
508
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
509
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
510
|
+
MTL_FAST_MATH = YES;
|
|
511
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
512
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
513
|
+
STRIP_INSTALLED_PRODUCT = NO;
|
|
514
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
515
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
516
|
+
SWIFT_VERSION = 5.0;
|
|
517
|
+
SYMROOT = "${SRCROOT}/../build";
|
|
518
|
+
};
|
|
519
|
+
name = Debug;
|
|
520
|
+
};
|
|
521
|
+
8B5A46FF8D3C1289CDEE3BAFACABCD2A /* Release */ = {
|
|
522
|
+
isa = XCBuildConfiguration;
|
|
523
|
+
buildSettings = {
|
|
524
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
525
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
526
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
527
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
528
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
|
|
529
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
530
|
+
CLANG_ENABLE_MODULES = YES;
|
|
531
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
532
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
533
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
534
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
535
|
+
CLANG_WARN_COMMA = YES;
|
|
536
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
537
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
538
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
539
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
540
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
541
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
542
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
543
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
544
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
545
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
546
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
547
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
548
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
549
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
550
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
551
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
552
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
553
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
554
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
555
|
+
COPY_PHASE_STRIP = NO;
|
|
556
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
557
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
558
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
559
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
560
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
561
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
562
|
+
"POD_CONFIGURATION_RELEASE=1",
|
|
563
|
+
"$(inherited)",
|
|
564
|
+
);
|
|
565
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
566
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
567
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
568
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
569
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
570
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
571
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
572
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
573
|
+
MTL_FAST_MATH = YES;
|
|
574
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
575
|
+
STRIP_INSTALLED_PRODUCT = NO;
|
|
576
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
577
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
578
|
+
SWIFT_VERSION = 5.0;
|
|
579
|
+
SYMROOT = "${SRCROOT}/../build";
|
|
580
|
+
};
|
|
581
|
+
name = Release;
|
|
582
|
+
};
|
|
583
|
+
9ED7C9B292F4D898ED38191AAE49D300 /* Release */ = {
|
|
584
|
+
isa = XCBuildConfiguration;
|
|
585
|
+
baseConfigurationReference = 9A8BC4CE72A41A90356C6098C5A88AF7 /* Pods-Example.release.xcconfig */;
|
|
586
|
+
buildSettings = {
|
|
587
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
588
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
589
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
590
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
591
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
592
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
593
|
+
MACH_O_TYPE = staticlib;
|
|
594
|
+
MODULEMAP_FILE = "Target Support Files/Pods-Example/Pods-Example.modulemap";
|
|
595
|
+
OTHER_LDFLAGS = "";
|
|
596
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
597
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
598
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
599
|
+
SDKROOT = iphoneos;
|
|
600
|
+
SKIP_INSTALL = YES;
|
|
601
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
602
|
+
VALIDATE_PRODUCT = YES;
|
|
603
|
+
};
|
|
604
|
+
name = Release;
|
|
605
|
+
};
|
|
606
|
+
A41E32451B1DB9454BD1D8249A810229 /* Debug */ = {
|
|
607
|
+
isa = XCBuildConfiguration;
|
|
608
|
+
baseConfigurationReference = 3D6746E07DAA8BF046F4230C613B314E /* Pods-Example.debug.xcconfig */;
|
|
609
|
+
buildSettings = {
|
|
610
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
|
|
611
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
612
|
+
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
|
|
613
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
|
|
614
|
+
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
|
|
615
|
+
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
|
|
616
|
+
MACH_O_TYPE = staticlib;
|
|
617
|
+
MODULEMAP_FILE = "Target Support Files/Pods-Example/Pods-Example.modulemap";
|
|
618
|
+
OTHER_LDFLAGS = "";
|
|
619
|
+
OTHER_LIBTOOLFLAGS = "";
|
|
620
|
+
PODS_ROOT = "$(SRCROOT)";
|
|
621
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
|
|
622
|
+
SDKROOT = iphoneos;
|
|
623
|
+
SKIP_INSTALL = YES;
|
|
624
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
625
|
+
};
|
|
626
|
+
name = Debug;
|
|
627
|
+
};
|
|
628
|
+
/* End XCBuildConfiguration section */
|
|
629
|
+
|
|
630
|
+
/* Begin XCConfigurationList section */
|
|
631
|
+
4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
|
|
632
|
+
isa = XCConfigurationList;
|
|
633
|
+
buildConfigurations = (
|
|
634
|
+
4BC7450F9457737EE3E637BA155B56F7 /* Debug */,
|
|
635
|
+
8B5A46FF8D3C1289CDEE3BAFACABCD2A /* Release */,
|
|
636
|
+
);
|
|
637
|
+
defaultConfigurationIsVisible = 0;
|
|
638
|
+
defaultConfigurationName = Release;
|
|
639
|
+
};
|
|
640
|
+
83720E5D128E7667C073401F1C057593 /* Build configuration list for PBXNativeTarget "MoMoUIKits" */ = {
|
|
641
|
+
isa = XCConfigurationList;
|
|
642
|
+
buildConfigurations = (
|
|
643
|
+
233EF4CE8F87617E43A797421D413248 /* Debug */,
|
|
644
|
+
3FFDF146EE6EA546A673212B3BEC82C0 /* Release */,
|
|
645
|
+
);
|
|
646
|
+
defaultConfigurationIsVisible = 0;
|
|
647
|
+
defaultConfigurationName = Release;
|
|
648
|
+
};
|
|
649
|
+
874541D29042D43B6A1ECF79C14E656F /* Build configuration list for PBXNativeTarget "Pods-Example" */ = {
|
|
650
|
+
isa = XCConfigurationList;
|
|
651
|
+
buildConfigurations = (
|
|
652
|
+
A41E32451B1DB9454BD1D8249A810229 /* Debug */,
|
|
653
|
+
9ED7C9B292F4D898ED38191AAE49D300 /* Release */,
|
|
654
|
+
);
|
|
655
|
+
defaultConfigurationIsVisible = 0;
|
|
656
|
+
defaultConfigurationName = Release;
|
|
657
|
+
};
|
|
658
|
+
/* End XCConfigurationList section */
|
|
659
|
+
};
|
|
660
|
+
rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */;
|
|
661
|
+
}
|