@developer_tribe/react-native-comnyx 0.1.0
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/.editorconfig +15 -0
- package/.gitattributes +3 -0
- package/.github/ISSUE_TEMPLATE/bug_report.yml +68 -0
- package/.github/ISSUE_TEMPLATE/config.yml +8 -0
- package/.github/actions/setup/action.yml +36 -0
- package/.github/workflows/ci.yml +165 -0
- package/.gitignore +86 -0
- package/.idea/.gitignore +8 -0
- package/.idea/codeStyles/Project.xml +59 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/comnyx-rn.iml +12 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/prettier.xml +6 -0
- package/.idea/vcs.xml +6 -0
- package/.idea/workspace.xml +71 -0
- package/.nvmrc +1 -0
- package/.watchmanconfig +1 -0
- package/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs +541 -0
- package/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs +28 -0
- package/.yarn/releases/yarn-3.6.1.cjs +874 -0
- package/.yarnrc.yml +10 -0
- package/CODE_OF_CONDUCT.md +133 -0
- package/CONTRIBUTING.md +130 -0
- package/Comnyx.podspec +26 -0
- package/LICENSE +20 -0
- package/README.md +33 -0
- package/android/build.gradle +100 -0
- package/android/generated/java/com/comnyx/NativeComnyxSpec.java +37 -0
- package/android/generated/jni/CMakeLists.txt +36 -0
- package/android/generated/jni/RNComnyxSpec-generated.cpp +32 -0
- package/android/generated/jni/RNComnyxSpec.h +31 -0
- package/android/generated/jni/react/renderer/components/RNComnyxSpec/RNComnyxSpecJSI-generated.cpp +28 -0
- package/android/generated/jni/react/renderer/components/RNComnyxSpec/RNComnyxSpecJSI.h +71 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +3 -0
- package/android/src/main/AndroidManifestNew.xml +2 -0
- package/android/src/main/java/com/comnyx/ComnyxModule.kt +23 -0
- package/android/src/main/java/com/comnyx/ComnyxPackage.kt +33 -0
- package/babel.config.js +3 -0
- package/example/.bundle/config +2 -0
- package/example/.watchmanconfig +1 -0
- package/example/Gemfile +10 -0
- package/example/README.md +97 -0
- package/example/android/app/build.gradle +133 -0
- package/example/android/app/debug.keystore +0 -0
- package/example/android/app/proguard-rules.pro +10 -0
- package/example/android/app/src/debug/AndroidManifest.xml +9 -0
- package/example/android/app/src/main/AndroidManifest.xml +26 -0
- package/example/android/app/src/main/java/comnyx/example/MainActivity.kt +22 -0
- package/example/android/app/src/main/java/comnyx/example/MainApplication.kt +44 -0
- package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/values/strings.xml +3 -0
- package/example/android/app/src/main/res/values/styles.xml +9 -0
- package/example/android/build.gradle +21 -0
- package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/example/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/example/android/gradle.properties +39 -0
- package/example/android/gradlew +251 -0
- package/example/android/gradlew.bat +94 -0
- package/example/android/settings.gradle +6 -0
- package/example/app.json +4 -0
- package/example/babel.config.js +12 -0
- package/example/index.js +5 -0
- package/example/ios/.xcode.env +11 -0
- package/example/ios/ComnyxExample/AppDelegate.swift +30 -0
- package/example/ios/ComnyxExample/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/example/ios/ComnyxExample/Images.xcassets/Contents.json +6 -0
- package/example/ios/ComnyxExample/Info.plist +52 -0
- package/example/ios/ComnyxExample/LaunchScreen.storyboard +47 -0
- package/example/ios/ComnyxExample/PrivacyInfo.xcprivacy +37 -0
- package/example/ios/ComnyxExample.xcodeproj/project.pbxproj +505 -0
- package/example/ios/ComnyxExample.xcodeproj/xcshareddata/xcschemes/ComnyxExample.xcscheme +88 -0
- package/example/ios/Podfile +43 -0
- package/example/jest.config.js +3 -0
- package/example/metro.config.js +18 -0
- package/example/package.json +31 -0
- package/example/react-native.config.js +21 -0
- package/example/src/App.tsx +20 -0
- package/ios/Comnyx.h +6 -0
- package/ios/Comnyx.mm +18 -0
- package/ios/generated/RNComnyxSpec/RNComnyxSpec-generated.mm +39 -0
- package/ios/generated/RNComnyxSpec/RNComnyxSpec.h +63 -0
- package/ios/generated/RNComnyxSpecJSI-generated.cpp +28 -0
- package/ios/generated/RNComnyxSpecJSI.h +71 -0
- package/lefthook.yml +14 -0
- package/lib/commonjs/NativeComnyx.ts +8 -0
- package/lib/commonjs/index.js +12 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/package.json +1 -0
- package/lib/module/NativeComnyx.ts +8 -0
- package/lib/module/index.js +7 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/package.json +1 -0
- package/lib/typescript/commonjs/package.json +1 -0
- package/lib/typescript/commonjs/src/NativeComnyx.d.ts +7 -0
- package/lib/typescript/commonjs/src/NativeComnyx.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/__tests__/index.test.d.ts +1 -0
- package/lib/typescript/commonjs/src/__tests__/index.test.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/index.d.ts +2 -0
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
- package/lib/typescript/module/package.json +1 -0
- package/lib/typescript/module/src/NativeComnyx.d.ts +7 -0
- package/lib/typescript/module/src/NativeComnyx.d.ts.map +1 -0
- package/lib/typescript/module/src/__tests__/index.test.d.ts +1 -0
- package/lib/typescript/module/src/__tests__/index.test.d.ts.map +1 -0
- package/lib/typescript/module/src/index.d.ts +2 -0
- package/lib/typescript/module/src/index.d.ts.map +1 -0
- package/package.json +203 -0
- package/react-native.config.js +12 -0
- package/src/NativeComnyx.ts +8 -0
- package/src/__tests__/index.test.tsx +1 -0
- package/src/index.tsx +5 -0
- package/tsconfig.build.json +4 -0
- package/tsconfig.json +30 -0
- package/turbo.json +36 -0
- package/yarn.lock +9251 -0
|
@@ -0,0 +1,505 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 54;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
0C80B921A6F3F58F76C31292 /* libPods-ComnyxExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-ComnyxExample.a */; };
|
|
11
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
12
|
+
761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
|
|
13
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
14
|
+
/* End PBXBuildFile section */
|
|
15
|
+
|
|
16
|
+
/* Begin PBXContainerItemProxy section */
|
|
17
|
+
00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
|
|
18
|
+
isa = PBXContainerItemProxy;
|
|
19
|
+
containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
20
|
+
proxyType = 1;
|
|
21
|
+
remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
|
|
22
|
+
remoteInfo = ComnyxExample;
|
|
23
|
+
};
|
|
24
|
+
/* End PBXContainerItemProxy section */
|
|
25
|
+
|
|
26
|
+
/* Begin PBXFileReference section */
|
|
27
|
+
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
28
|
+
13B07F961A680F5B00A75B9A /* ComnyxExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ComnyxExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
29
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = ComnyxExample/Images.xcassets; sourceTree = "<group>"; };
|
|
30
|
+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = ComnyxExample/Info.plist; sourceTree = "<group>"; };
|
|
31
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = ComnyxExample/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
32
|
+
3B4392A12AC88292D35C810B /* Pods-ComnyxExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ComnyxExample.debug.xcconfig"; path = "Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample.debug.xcconfig"; sourceTree = "<group>"; };
|
|
33
|
+
5709B34CF0A7D63546082F79 /* Pods-ComnyxExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ComnyxExample.release.xcconfig"; path = "Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample.release.xcconfig"; sourceTree = "<group>"; };
|
|
34
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-ComnyxExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ComnyxExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
35
|
+
761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = ComnyxExample/AppDelegate.swift; sourceTree = "<group>"; };
|
|
36
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = ComnyxExample/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
37
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
38
|
+
/* End PBXFileReference section */
|
|
39
|
+
|
|
40
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
41
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
42
|
+
isa = PBXFrameworksBuildPhase;
|
|
43
|
+
buildActionMask = 2147483647;
|
|
44
|
+
files = (
|
|
45
|
+
0C80B921A6F3F58F76C31292 /* libPods-ComnyxExample.a in Frameworks */,
|
|
46
|
+
);
|
|
47
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
48
|
+
};
|
|
49
|
+
/* End PBXFrameworksBuildPhase section */
|
|
50
|
+
|
|
51
|
+
/* Begin PBXGroup section */
|
|
52
|
+
00E356F01AD99517003FC87E /* Supporting Files */ = {
|
|
53
|
+
isa = PBXGroup;
|
|
54
|
+
children = (
|
|
55
|
+
00E356F11AD99517003FC87E /* Info.plist */,
|
|
56
|
+
);
|
|
57
|
+
name = "Supporting Files";
|
|
58
|
+
sourceTree = "<group>";
|
|
59
|
+
};
|
|
60
|
+
13B07FAE1A68108700A75B9A /* ComnyxExample */ = {
|
|
61
|
+
isa = PBXGroup;
|
|
62
|
+
children = (
|
|
63
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
64
|
+
761780EC2CA45674006654EE /* AppDelegate.swift */,
|
|
65
|
+
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
66
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
|
67
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
|
|
68
|
+
);
|
|
69
|
+
name = ComnyxExample;
|
|
70
|
+
sourceTree = "<group>";
|
|
71
|
+
};
|
|
72
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
|
73
|
+
isa = PBXGroup;
|
|
74
|
+
children = (
|
|
75
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
76
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-ComnyxExample.a */,
|
|
77
|
+
);
|
|
78
|
+
name = Frameworks;
|
|
79
|
+
sourceTree = "<group>";
|
|
80
|
+
};
|
|
81
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
|
82
|
+
isa = PBXGroup;
|
|
83
|
+
children = (
|
|
84
|
+
);
|
|
85
|
+
name = Libraries;
|
|
86
|
+
sourceTree = "<group>";
|
|
87
|
+
};
|
|
88
|
+
83CBB9F61A601CBA00E9B192 = {
|
|
89
|
+
isa = PBXGroup;
|
|
90
|
+
children = (
|
|
91
|
+
13B07FAE1A68108700A75B9A /* ComnyxExample */,
|
|
92
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
93
|
+
83CBBA001A601CBA00E9B192 /* Products */,
|
|
94
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
95
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */,
|
|
96
|
+
);
|
|
97
|
+
indentWidth = 2;
|
|
98
|
+
sourceTree = "<group>";
|
|
99
|
+
tabWidth = 2;
|
|
100
|
+
usesTabs = 0;
|
|
101
|
+
};
|
|
102
|
+
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
103
|
+
isa = PBXGroup;
|
|
104
|
+
children = (
|
|
105
|
+
13B07F961A680F5B00A75B9A /* ComnyxExample.app */,
|
|
106
|
+
);
|
|
107
|
+
name = Products;
|
|
108
|
+
sourceTree = "<group>";
|
|
109
|
+
};
|
|
110
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
|
|
111
|
+
isa = PBXGroup;
|
|
112
|
+
children = (
|
|
113
|
+
3B4392A12AC88292D35C810B /* Pods-ComnyxExample.debug.xcconfig */,
|
|
114
|
+
5709B34CF0A7D63546082F79 /* Pods-ComnyxExample.release.xcconfig */,
|
|
115
|
+
);
|
|
116
|
+
path = Pods;
|
|
117
|
+
sourceTree = "<group>";
|
|
118
|
+
};
|
|
119
|
+
/* End PBXGroup section */
|
|
120
|
+
|
|
121
|
+
/* Begin PBXNativeTarget section */
|
|
122
|
+
13B07F861A680F5B00A75B9A /* ComnyxExample */ = {
|
|
123
|
+
isa = PBXNativeTarget;
|
|
124
|
+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ComnyxExample" */;
|
|
125
|
+
buildPhases = (
|
|
126
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
|
|
127
|
+
13B07F871A680F5B00A75B9A /* Sources */,
|
|
128
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
129
|
+
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
130
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
|
131
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
|
|
132
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
|
|
133
|
+
);
|
|
134
|
+
buildRules = (
|
|
135
|
+
);
|
|
136
|
+
dependencies = (
|
|
137
|
+
);
|
|
138
|
+
name = ComnyxExample;
|
|
139
|
+
productName = ComnyxExample;
|
|
140
|
+
productReference = 13B07F961A680F5B00A75B9A /* ComnyxExample.app */;
|
|
141
|
+
productType = "com.apple.product-type.application";
|
|
142
|
+
};
|
|
143
|
+
/* End PBXNativeTarget section */
|
|
144
|
+
|
|
145
|
+
/* Begin PBXProject section */
|
|
146
|
+
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
147
|
+
isa = PBXProject;
|
|
148
|
+
attributes = {
|
|
149
|
+
LastUpgradeCheck = 1210;
|
|
150
|
+
TargetAttributes = {
|
|
151
|
+
13B07F861A680F5B00A75B9A = {
|
|
152
|
+
LastSwiftMigration = 1120;
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ComnyxExample" */;
|
|
157
|
+
compatibilityVersion = "Xcode 12.0";
|
|
158
|
+
developmentRegion = en;
|
|
159
|
+
hasScannedForEncodings = 0;
|
|
160
|
+
knownRegions = (
|
|
161
|
+
en,
|
|
162
|
+
Base,
|
|
163
|
+
);
|
|
164
|
+
mainGroup = 83CBB9F61A601CBA00E9B192;
|
|
165
|
+
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
|
166
|
+
projectDirPath = "";
|
|
167
|
+
projectRoot = "";
|
|
168
|
+
targets = (
|
|
169
|
+
13B07F861A680F5B00A75B9A /* ComnyxExample */,
|
|
170
|
+
);
|
|
171
|
+
};
|
|
172
|
+
/* End PBXProject section */
|
|
173
|
+
|
|
174
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
175
|
+
00E356EC1AD99517003FC87E /* Resources */ = {
|
|
176
|
+
isa = PBXResourcesBuildPhase;
|
|
177
|
+
buildActionMask = 2147483647;
|
|
178
|
+
files = (
|
|
179
|
+
);
|
|
180
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
181
|
+
};
|
|
182
|
+
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
183
|
+
isa = PBXResourcesBuildPhase;
|
|
184
|
+
buildActionMask = 2147483647;
|
|
185
|
+
files = (
|
|
186
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
|
187
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
188
|
+
);
|
|
189
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
190
|
+
};
|
|
191
|
+
/* End PBXResourcesBuildPhase section */
|
|
192
|
+
|
|
193
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
194
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
|
|
195
|
+
isa = PBXShellScriptBuildPhase;
|
|
196
|
+
buildActionMask = 2147483647;
|
|
197
|
+
files = (
|
|
198
|
+
);
|
|
199
|
+
inputPaths = (
|
|
200
|
+
"$(SRCROOT)/.xcode.env.local",
|
|
201
|
+
"$(SRCROOT)/.xcode.env",
|
|
202
|
+
);
|
|
203
|
+
name = "Bundle React Native code and images";
|
|
204
|
+
outputPaths = (
|
|
205
|
+
);
|
|
206
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
207
|
+
shellPath = /bin/sh;
|
|
208
|
+
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
|
|
209
|
+
};
|
|
210
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
|
|
211
|
+
isa = PBXShellScriptBuildPhase;
|
|
212
|
+
buildActionMask = 2147483647;
|
|
213
|
+
files = (
|
|
214
|
+
);
|
|
215
|
+
inputFileListPaths = (
|
|
216
|
+
"${PODS_ROOT}/Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
217
|
+
);
|
|
218
|
+
name = "[CP] Embed Pods Frameworks";
|
|
219
|
+
outputFileListPaths = (
|
|
220
|
+
"${PODS_ROOT}/Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
221
|
+
);
|
|
222
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
223
|
+
shellPath = /bin/sh;
|
|
224
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample-frameworks.sh\"\n";
|
|
225
|
+
showEnvVarsInLog = 0;
|
|
226
|
+
};
|
|
227
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
|
|
228
|
+
isa = PBXShellScriptBuildPhase;
|
|
229
|
+
buildActionMask = 2147483647;
|
|
230
|
+
files = (
|
|
231
|
+
);
|
|
232
|
+
inputFileListPaths = (
|
|
233
|
+
);
|
|
234
|
+
inputPaths = (
|
|
235
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
236
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
237
|
+
);
|
|
238
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
239
|
+
outputFileListPaths = (
|
|
240
|
+
);
|
|
241
|
+
outputPaths = (
|
|
242
|
+
"$(DERIVED_FILE_DIR)/Pods-ComnyxExample-checkManifestLockResult.txt",
|
|
243
|
+
);
|
|
244
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
245
|
+
shellPath = /bin/sh;
|
|
246
|
+
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";
|
|
247
|
+
showEnvVarsInLog = 0;
|
|
248
|
+
};
|
|
249
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
|
|
250
|
+
isa = PBXShellScriptBuildPhase;
|
|
251
|
+
buildActionMask = 2147483647;
|
|
252
|
+
files = (
|
|
253
|
+
);
|
|
254
|
+
inputFileListPaths = (
|
|
255
|
+
"${PODS_ROOT}/Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
256
|
+
);
|
|
257
|
+
name = "[CP] Copy Pods Resources";
|
|
258
|
+
outputFileListPaths = (
|
|
259
|
+
"${PODS_ROOT}/Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
260
|
+
);
|
|
261
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
262
|
+
shellPath = /bin/sh;
|
|
263
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ComnyxExample/Pods-ComnyxExample-resources.sh\"\n";
|
|
264
|
+
showEnvVarsInLog = 0;
|
|
265
|
+
};
|
|
266
|
+
/* End PBXShellScriptBuildPhase section */
|
|
267
|
+
|
|
268
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
269
|
+
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
270
|
+
isa = PBXSourcesBuildPhase;
|
|
271
|
+
buildActionMask = 2147483647;
|
|
272
|
+
files = (
|
|
273
|
+
761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
|
|
274
|
+
);
|
|
275
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
276
|
+
};
|
|
277
|
+
/* End PBXSourcesBuildPhase section */
|
|
278
|
+
|
|
279
|
+
/* Begin PBXTargetDependency section */
|
|
280
|
+
00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
|
|
281
|
+
isa = PBXTargetDependency;
|
|
282
|
+
target = 13B07F861A680F5B00A75B9A /* ComnyxExample */;
|
|
283
|
+
targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
|
|
284
|
+
};
|
|
285
|
+
/* End PBXTargetDependency section */
|
|
286
|
+
|
|
287
|
+
/* Begin XCBuildConfiguration section */
|
|
288
|
+
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
289
|
+
isa = XCBuildConfiguration;
|
|
290
|
+
baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-ComnyxExample.debug.xcconfig */;
|
|
291
|
+
buildSettings = {
|
|
292
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
293
|
+
CLANG_ENABLE_MODULES = YES;
|
|
294
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
295
|
+
ENABLE_BITCODE = NO;
|
|
296
|
+
INFOPLIST_FILE = ComnyxExample/Info.plist;
|
|
297
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
298
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
299
|
+
"$(inherited)",
|
|
300
|
+
"@executable_path/Frameworks",
|
|
301
|
+
);
|
|
302
|
+
MARKETING_VERSION = 1.0;
|
|
303
|
+
OTHER_LDFLAGS = (
|
|
304
|
+
"$(inherited)",
|
|
305
|
+
"-ObjC",
|
|
306
|
+
"-lc++",
|
|
307
|
+
);
|
|
308
|
+
PRODUCT_BUNDLE_IDENTIFIER = "comnyx.example";
|
|
309
|
+
PRODUCT_NAME = ComnyxExample;
|
|
310
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
311
|
+
SWIFT_VERSION = 5.0;
|
|
312
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
313
|
+
};
|
|
314
|
+
name = Debug;
|
|
315
|
+
};
|
|
316
|
+
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
317
|
+
isa = XCBuildConfiguration;
|
|
318
|
+
baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-ComnyxExample.release.xcconfig */;
|
|
319
|
+
buildSettings = {
|
|
320
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
321
|
+
CLANG_ENABLE_MODULES = YES;
|
|
322
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
323
|
+
INFOPLIST_FILE = ComnyxExample/Info.plist;
|
|
324
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
325
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
326
|
+
"$(inherited)",
|
|
327
|
+
"@executable_path/Frameworks",
|
|
328
|
+
);
|
|
329
|
+
MARKETING_VERSION = 1.0;
|
|
330
|
+
OTHER_LDFLAGS = (
|
|
331
|
+
"$(inherited)",
|
|
332
|
+
"-ObjC",
|
|
333
|
+
"-lc++",
|
|
334
|
+
);
|
|
335
|
+
PRODUCT_BUNDLE_IDENTIFIER = "comnyx.example";
|
|
336
|
+
PRODUCT_NAME = ComnyxExample;
|
|
337
|
+
SWIFT_VERSION = 5.0;
|
|
338
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
339
|
+
};
|
|
340
|
+
name = Release;
|
|
341
|
+
};
|
|
342
|
+
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
|
343
|
+
isa = XCBuildConfiguration;
|
|
344
|
+
buildSettings = {
|
|
345
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
346
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
347
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
348
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
349
|
+
CLANG_ENABLE_MODULES = YES;
|
|
350
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
351
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
352
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
353
|
+
CLANG_WARN_COMMA = YES;
|
|
354
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
355
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
356
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
357
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
358
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
359
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
360
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
361
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
362
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
363
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
364
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
365
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
366
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
367
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
368
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
369
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
370
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
371
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
372
|
+
COPY_PHASE_STRIP = NO;
|
|
373
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
374
|
+
ENABLE_TESTABILITY = YES;
|
|
375
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
376
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
377
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
378
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
379
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
380
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
381
|
+
"DEBUG=1",
|
|
382
|
+
"$(inherited)",
|
|
383
|
+
);
|
|
384
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
385
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
386
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
387
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
388
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
389
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
390
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
391
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
392
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
393
|
+
/usr/lib/swift,
|
|
394
|
+
"$(inherited)",
|
|
395
|
+
);
|
|
396
|
+
LIBRARY_SEARCH_PATHS = (
|
|
397
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
398
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
399
|
+
"\"$(inherited)\"",
|
|
400
|
+
);
|
|
401
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
402
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
403
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
404
|
+
"$(OTHER_CFLAGS)",
|
|
405
|
+
"-DFOLLY_NO_CONFIG",
|
|
406
|
+
"-DFOLLY_MOBILE=1",
|
|
407
|
+
"-DFOLLY_USE_LIBCPP=1",
|
|
408
|
+
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
409
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
410
|
+
);
|
|
411
|
+
SDKROOT = iphoneos;
|
|
412
|
+
};
|
|
413
|
+
name = Debug;
|
|
414
|
+
};
|
|
415
|
+
83CBBA211A601CBA00E9B192 /* Release */ = {
|
|
416
|
+
isa = XCBuildConfiguration;
|
|
417
|
+
buildSettings = {
|
|
418
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
419
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
420
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
421
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
422
|
+
CLANG_ENABLE_MODULES = YES;
|
|
423
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
424
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
425
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
426
|
+
CLANG_WARN_COMMA = YES;
|
|
427
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
428
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
429
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
430
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
431
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
432
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
433
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
434
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
435
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
436
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
437
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
438
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
439
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
440
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
441
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
442
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
443
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
444
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
445
|
+
COPY_PHASE_STRIP = YES;
|
|
446
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
447
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
448
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
449
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
450
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
451
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
452
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
453
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
454
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
455
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
456
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
457
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
458
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
459
|
+
/usr/lib/swift,
|
|
460
|
+
"$(inherited)",
|
|
461
|
+
);
|
|
462
|
+
LIBRARY_SEARCH_PATHS = (
|
|
463
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
464
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
465
|
+
"\"$(inherited)\"",
|
|
466
|
+
);
|
|
467
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
468
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
469
|
+
"$(OTHER_CFLAGS)",
|
|
470
|
+
"-DFOLLY_NO_CONFIG",
|
|
471
|
+
"-DFOLLY_MOBILE=1",
|
|
472
|
+
"-DFOLLY_USE_LIBCPP=1",
|
|
473
|
+
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
474
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
475
|
+
);
|
|
476
|
+
SDKROOT = iphoneos;
|
|
477
|
+
VALIDATE_PRODUCT = YES;
|
|
478
|
+
};
|
|
479
|
+
name = Release;
|
|
480
|
+
};
|
|
481
|
+
/* End XCBuildConfiguration section */
|
|
482
|
+
|
|
483
|
+
/* Begin XCConfigurationList section */
|
|
484
|
+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "ComnyxExample" */ = {
|
|
485
|
+
isa = XCConfigurationList;
|
|
486
|
+
buildConfigurations = (
|
|
487
|
+
13B07F941A680F5B00A75B9A /* Debug */,
|
|
488
|
+
13B07F951A680F5B00A75B9A /* Release */,
|
|
489
|
+
);
|
|
490
|
+
defaultConfigurationIsVisible = 0;
|
|
491
|
+
defaultConfigurationName = Release;
|
|
492
|
+
};
|
|
493
|
+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "ComnyxExample" */ = {
|
|
494
|
+
isa = XCConfigurationList;
|
|
495
|
+
buildConfigurations = (
|
|
496
|
+
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
497
|
+
83CBBA211A601CBA00E9B192 /* Release */,
|
|
498
|
+
);
|
|
499
|
+
defaultConfigurationIsVisible = 0;
|
|
500
|
+
defaultConfigurationName = Release;
|
|
501
|
+
};
|
|
502
|
+
/* End XCConfigurationList section */
|
|
503
|
+
};
|
|
504
|
+
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
505
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "1210"
|
|
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 = "13B07F861A680F5B00A75B9A"
|
|
18
|
+
BuildableName = "ComnyxExample.app"
|
|
19
|
+
BlueprintName = "ComnyxExample"
|
|
20
|
+
ReferencedContainer = "container:ComnyxExample.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
|
+
<TestableReference
|
|
32
|
+
skipped = "NO">
|
|
33
|
+
<BuildableReference
|
|
34
|
+
BuildableIdentifier = "primary"
|
|
35
|
+
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
|
|
36
|
+
BuildableName = "ComnyxExampleTests.xctest"
|
|
37
|
+
BlueprintName = "ComnyxExampleTests"
|
|
38
|
+
ReferencedContainer = "container:ComnyxExample.xcodeproj">
|
|
39
|
+
</BuildableReference>
|
|
40
|
+
</TestableReference>
|
|
41
|
+
</Testables>
|
|
42
|
+
</TestAction>
|
|
43
|
+
<LaunchAction
|
|
44
|
+
buildConfiguration = "Debug"
|
|
45
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
46
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
47
|
+
launchStyle = "0"
|
|
48
|
+
useCustomWorkingDirectory = "NO"
|
|
49
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
50
|
+
debugDocumentVersioning = "YES"
|
|
51
|
+
debugServiceExtension = "internal"
|
|
52
|
+
allowLocationSimulation = "YES">
|
|
53
|
+
<BuildableProductRunnable
|
|
54
|
+
runnableDebuggingMode = "0">
|
|
55
|
+
<BuildableReference
|
|
56
|
+
BuildableIdentifier = "primary"
|
|
57
|
+
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
58
|
+
BuildableName = "ComnyxExample.app"
|
|
59
|
+
BlueprintName = "ComnyxExample"
|
|
60
|
+
ReferencedContainer = "container:ComnyxExample.xcodeproj">
|
|
61
|
+
</BuildableReference>
|
|
62
|
+
</BuildableProductRunnable>
|
|
63
|
+
</LaunchAction>
|
|
64
|
+
<ProfileAction
|
|
65
|
+
buildConfiguration = "Release"
|
|
66
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
67
|
+
savedToolIdentifier = ""
|
|
68
|
+
useCustomWorkingDirectory = "NO"
|
|
69
|
+
debugDocumentVersioning = "YES">
|
|
70
|
+
<BuildableProductRunnable
|
|
71
|
+
runnableDebuggingMode = "0">
|
|
72
|
+
<BuildableReference
|
|
73
|
+
BuildableIdentifier = "primary"
|
|
74
|
+
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
75
|
+
BuildableName = "ComnyxExample.app"
|
|
76
|
+
BlueprintName = "ComnyxExample"
|
|
77
|
+
ReferencedContainer = "container:ComnyxExample.xcodeproj">
|
|
78
|
+
</BuildableReference>
|
|
79
|
+
</BuildableProductRunnable>
|
|
80
|
+
</ProfileAction>
|
|
81
|
+
<AnalyzeAction
|
|
82
|
+
buildConfiguration = "Debug">
|
|
83
|
+
</AnalyzeAction>
|
|
84
|
+
<ArchiveAction
|
|
85
|
+
buildConfiguration = "Release"
|
|
86
|
+
revealArchiveInOrganizer = "YES">
|
|
87
|
+
</ArchiveAction>
|
|
88
|
+
</Scheme>
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
ENV['RCT_NEW_ARCH_ENABLED'] = '1'
|
|
2
|
+
|
|
3
|
+
# Resolve react_native_pods.rb with node to allow for hoisting
|
|
4
|
+
require Pod::Executable.execute_command('node', ['-p',
|
|
5
|
+
'require.resolve(
|
|
6
|
+
"react-native/scripts/react_native_pods.rb",
|
|
7
|
+
{paths: [process.argv[1]]},
|
|
8
|
+
)', __dir__]).strip
|
|
9
|
+
|
|
10
|
+
platform :ios, min_ios_version_supported
|
|
11
|
+
prepare_react_native_project!
|
|
12
|
+
|
|
13
|
+
linkage = ENV['USE_FRAMEWORKS']
|
|
14
|
+
if linkage != nil
|
|
15
|
+
Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
|
|
16
|
+
use_frameworks! :linkage => linkage.to_sym
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
target 'ComnyxExample' do
|
|
20
|
+
config = use_native_modules!
|
|
21
|
+
|
|
22
|
+
use_react_native!(
|
|
23
|
+
:path => config[:reactNativePath],
|
|
24
|
+
# An absolute path to your application root.
|
|
25
|
+
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
|
26
|
+
)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
# Run Codegen during development for the example app.
|
|
30
|
+
pre_install do |installer|
|
|
31
|
+
system("cd ../../ && npx bob build --target codegen")
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
post_install do |installer|
|
|
35
|
+
# https://github.com/facebook/react-native/blob/main/packages/react-native/scripts/react_native_pods.rb#L197-L202
|
|
36
|
+
react_native_post_install(
|
|
37
|
+
installer,
|
|
38
|
+
config[:reactNativePath],
|
|
39
|
+
:mac_catalyst_enabled => false,
|
|
40
|
+
# :ccache_enabled => true
|
|
41
|
+
)
|
|
42
|
+
end
|
|
43
|
+
end
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
const path = require('path');
|
|
2
|
+
const { getDefaultConfig } = require('@react-native/metro-config');
|
|
3
|
+
const { getConfig } = require('react-native-builder-bob/metro-config');
|
|
4
|
+
const pkg = require('../package.json');
|
|
5
|
+
|
|
6
|
+
const root = path.resolve(__dirname, '..');
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Metro configuration
|
|
10
|
+
* https://facebook.github.io/metro/docs/configuration
|
|
11
|
+
*
|
|
12
|
+
* @type {import('metro-config').MetroConfig}
|
|
13
|
+
*/
|
|
14
|
+
module.exports = getConfig(getDefaultConfig(__dirname), {
|
|
15
|
+
root,
|
|
16
|
+
pkg,
|
|
17
|
+
project: __dirname,
|
|
18
|
+
});
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "react-native-comnyx-example",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": true,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"android": "react-native run-android",
|
|
7
|
+
"ios": "react-native run-ios",
|
|
8
|
+
"start": "react-native start",
|
|
9
|
+
"build:android": "react-native build-android --extra-params \"--no-daemon --console=plain -PreactNativeArchitectures=arm64-v8a\"",
|
|
10
|
+
"build:ios": "react-native build-ios --scheme ComnyxExample --mode Debug --extra-params \"-sdk iphonesimulator CC=clang CPLUSPLUS=clang++ LD=clang LDPLUSPLUS=clang++ GCC_OPTIMIZATION_LEVEL=0 GCC_PRECOMPILE_PREFIX_HEADER=YES ASSETCATALOG_COMPILER_OPTIMIZATION=time DEBUG_INFORMATION_FORMAT=dwarf COMPILER_INDEX_STORE_ENABLE=NO\""
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"react": "19.0.0",
|
|
14
|
+
"react-native": "0.78.1"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@babel/core": "^7.25.2",
|
|
18
|
+
"@babel/preset-env": "^7.25.3",
|
|
19
|
+
"@babel/runtime": "^7.25.0",
|
|
20
|
+
"@react-native-community/cli": "15.0.1",
|
|
21
|
+
"@react-native-community/cli-platform-android": "15.0.1",
|
|
22
|
+
"@react-native-community/cli-platform-ios": "15.0.1",
|
|
23
|
+
"@react-native/babel-preset": "0.78.1",
|
|
24
|
+
"@react-native/metro-config": "0.78.1",
|
|
25
|
+
"@react-native/typescript-config": "0.78.1",
|
|
26
|
+
"react-native-builder-bob": "^0.38.3"
|
|
27
|
+
},
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=18"
|
|
30
|
+
}
|
|
31
|
+
}
|