react-native-inapp-inspector 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/example/.bundle/config +2 -0
  2. package/example/.eslintrc.js +4 -0
  3. package/example/.prettierrc.js +5 -0
  4. package/example/.watchmanconfig +1 -0
  5. package/example/App.tsx +143 -0
  6. package/example/Gemfile +17 -0
  7. package/example/README.md +97 -0
  8. package/example/__tests__/App.test.tsx +13 -0
  9. package/example/android/app/build.gradle +119 -0
  10. package/example/android/app/debug.keystore +0 -0
  11. package/example/android/app/proguard-rules.pro +10 -0
  12. package/example/android/app/src/main/AndroidManifest.xml +27 -0
  13. package/example/android/app/src/main/java/com/example/MainActivity.kt +22 -0
  14. package/example/android/app/src/main/java/com/example/MainApplication.kt +27 -0
  15. package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  16. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  17. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  18. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  19. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  20. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  21. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  22. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  23. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  24. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  25. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  26. package/example/android/app/src/main/res/values/strings.xml +3 -0
  27. package/example/android/app/src/main/res/values/styles.xml +9 -0
  28. package/example/android/build.gradle +21 -0
  29. package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  30. package/example/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  31. package/example/android/gradle.properties +44 -0
  32. package/example/android/gradlew +248 -0
  33. package/example/android/gradlew.bat +98 -0
  34. package/example/android/settings.gradle +6 -0
  35. package/example/app.json +4 -0
  36. package/example/babel.config.js +3 -0
  37. package/example/index.js +9 -0
  38. package/example/ios/.xcode.env +11 -0
  39. package/example/ios/Podfile +34 -0
  40. package/example/ios/example/AppDelegate.swift +48 -0
  41. package/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  42. package/example/ios/example/Images.xcassets/Contents.json +6 -0
  43. package/example/ios/example/Info.plist +59 -0
  44. package/example/ios/example/LaunchScreen.storyboard +47 -0
  45. package/example/ios/example/PrivacyInfo.xcprivacy +37 -0
  46. package/example/ios/example.xcodeproj/project.pbxproj +475 -0
  47. package/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme +88 -0
  48. package/example/jest.config.js +3 -0
  49. package/example/metro.config.js +11 -0
  50. package/example/package-lock.json +12454 -0
  51. package/example/package.json +46 -0
  52. package/example/tsconfig.json +8 -0
  53. package/package.json +3 -2
@@ -0,0 +1,475 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 0C80B921A6F3F58F76C31292 /* libPods-example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-example.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 PBXFileReference section */
17
+ 13B07F961A680F5B00A75B9A /* example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = example.app; sourceTree = BUILT_PRODUCTS_DIR; };
18
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = example/Images.xcassets; sourceTree = "<group>"; };
19
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = example/Info.plist; sourceTree = "<group>"; };
20
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = example/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
21
+ 3B4392A12AC88292D35C810B /* 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>"; };
22
+ 5709B34CF0A7D63546082F79 /* 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>"; };
23
+ 5DCACB8F33CDC322A6C60F78 /* libPods-example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
24
+ 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = example/AppDelegate.swift; sourceTree = "<group>"; };
25
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = example/LaunchScreen.storyboard; sourceTree = "<group>"; };
26
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
27
+ /* End PBXFileReference section */
28
+
29
+ /* Begin PBXFrameworksBuildPhase section */
30
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
31
+ isa = PBXFrameworksBuildPhase;
32
+ buildActionMask = 2147483647;
33
+ files = (
34
+ 0C80B921A6F3F58F76C31292 /* libPods-example.a in Frameworks */,
35
+ );
36
+ runOnlyForDeploymentPostprocessing = 0;
37
+ };
38
+ /* End PBXFrameworksBuildPhase section */
39
+
40
+ /* Begin PBXGroup section */
41
+ 13B07FAE1A68108700A75B9A /* example */ = {
42
+ isa = PBXGroup;
43
+ children = (
44
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
45
+ 761780EC2CA45674006654EE /* AppDelegate.swift */,
46
+ 13B07FB61A68108700A75B9A /* Info.plist */,
47
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
48
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
49
+ );
50
+ name = example;
51
+ sourceTree = "<group>";
52
+ };
53
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
54
+ isa = PBXGroup;
55
+ children = (
56
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
57
+ 5DCACB8F33CDC322A6C60F78 /* libPods-example.a */,
58
+ );
59
+ name = Frameworks;
60
+ sourceTree = "<group>";
61
+ };
62
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
63
+ isa = PBXGroup;
64
+ children = (
65
+ );
66
+ name = Libraries;
67
+ sourceTree = "<group>";
68
+ };
69
+ 83CBB9F61A601CBA00E9B192 = {
70
+ isa = PBXGroup;
71
+ children = (
72
+ 13B07FAE1A68108700A75B9A /* example */,
73
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
74
+ 83CBBA001A601CBA00E9B192 /* Products */,
75
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
76
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
77
+ );
78
+ indentWidth = 2;
79
+ sourceTree = "<group>";
80
+ tabWidth = 2;
81
+ usesTabs = 0;
82
+ };
83
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
84
+ isa = PBXGroup;
85
+ children = (
86
+ 13B07F961A680F5B00A75B9A /* example.app */,
87
+ );
88
+ name = Products;
89
+ sourceTree = "<group>";
90
+ };
91
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
92
+ isa = PBXGroup;
93
+ children = (
94
+ 3B4392A12AC88292D35C810B /* Pods-example.debug.xcconfig */,
95
+ 5709B34CF0A7D63546082F79 /* Pods-example.release.xcconfig */,
96
+ );
97
+ path = Pods;
98
+ sourceTree = "<group>";
99
+ };
100
+ /* End PBXGroup section */
101
+
102
+ /* Begin PBXNativeTarget section */
103
+ 13B07F861A680F5B00A75B9A /* example */ = {
104
+ isa = PBXNativeTarget;
105
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */;
106
+ buildPhases = (
107
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
108
+ 13B07F871A680F5B00A75B9A /* Sources */,
109
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
110
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
111
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
112
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
113
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
114
+ );
115
+ buildRules = (
116
+ );
117
+ dependencies = (
118
+ );
119
+ name = example;
120
+ productName = example;
121
+ productReference = 13B07F961A680F5B00A75B9A /* example.app */;
122
+ productType = "com.apple.product-type.application";
123
+ };
124
+ /* End PBXNativeTarget section */
125
+
126
+ /* Begin PBXProject section */
127
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
128
+ isa = PBXProject;
129
+ attributes = {
130
+ LastUpgradeCheck = 1210;
131
+ TargetAttributes = {
132
+ 13B07F861A680F5B00A75B9A = {
133
+ LastSwiftMigration = 1120;
134
+ };
135
+ };
136
+ };
137
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */;
138
+ compatibilityVersion = "Xcode 12.0";
139
+ developmentRegion = en;
140
+ hasScannedForEncodings = 0;
141
+ knownRegions = (
142
+ en,
143
+ Base,
144
+ );
145
+ mainGroup = 83CBB9F61A601CBA00E9B192;
146
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
147
+ projectDirPath = "";
148
+ projectRoot = "";
149
+ targets = (
150
+ 13B07F861A680F5B00A75B9A /* example */,
151
+ );
152
+ };
153
+ /* End PBXProject section */
154
+
155
+ /* Begin PBXResourcesBuildPhase section */
156
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
157
+ isa = PBXResourcesBuildPhase;
158
+ buildActionMask = 2147483647;
159
+ files = (
160
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
161
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
162
+ );
163
+ runOnlyForDeploymentPostprocessing = 0;
164
+ };
165
+ /* End PBXResourcesBuildPhase section */
166
+
167
+ /* Begin PBXShellScriptBuildPhase section */
168
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
169
+ isa = PBXShellScriptBuildPhase;
170
+ buildActionMask = 2147483647;
171
+ files = (
172
+ );
173
+ inputPaths = (
174
+ "$(SRCROOT)/.xcode.env.local",
175
+ "$(SRCROOT)/.xcode.env",
176
+ );
177
+ name = "Bundle React Native code and images";
178
+ outputPaths = (
179
+ );
180
+ runOnlyForDeploymentPostprocessing = 0;
181
+ shellPath = /bin/sh;
182
+ 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";
183
+ };
184
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
185
+ isa = PBXShellScriptBuildPhase;
186
+ buildActionMask = 2147483647;
187
+ files = (
188
+ );
189
+ inputFileListPaths = (
190
+ "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-input-files.xcfilelist",
191
+ );
192
+ name = "[CP] Embed Pods Frameworks";
193
+ outputFileListPaths = (
194
+ "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-output-files.xcfilelist",
195
+ );
196
+ runOnlyForDeploymentPostprocessing = 0;
197
+ shellPath = /bin/sh;
198
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks.sh\"\n";
199
+ showEnvVarsInLog = 0;
200
+ };
201
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
202
+ isa = PBXShellScriptBuildPhase;
203
+ buildActionMask = 2147483647;
204
+ files = (
205
+ );
206
+ inputFileListPaths = (
207
+ );
208
+ inputPaths = (
209
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
210
+ "${PODS_ROOT}/Manifest.lock",
211
+ );
212
+ name = "[CP] Check Pods Manifest.lock";
213
+ outputFileListPaths = (
214
+ );
215
+ outputPaths = (
216
+ "$(DERIVED_FILE_DIR)/Pods-example-checkManifestLockResult.txt",
217
+ );
218
+ runOnlyForDeploymentPostprocessing = 0;
219
+ shellPath = /bin/sh;
220
+ 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";
221
+ showEnvVarsInLog = 0;
222
+ };
223
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
224
+ isa = PBXShellScriptBuildPhase;
225
+ buildActionMask = 2147483647;
226
+ files = (
227
+ );
228
+ inputFileListPaths = (
229
+ "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-input-files.xcfilelist",
230
+ );
231
+ name = "[CP] Copy Pods Resources";
232
+ outputFileListPaths = (
233
+ "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-output-files.xcfilelist",
234
+ );
235
+ runOnlyForDeploymentPostprocessing = 0;
236
+ shellPath = /bin/sh;
237
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources.sh\"\n";
238
+ showEnvVarsInLog = 0;
239
+ };
240
+ /* End PBXShellScriptBuildPhase section */
241
+
242
+ /* Begin PBXSourcesBuildPhase section */
243
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
244
+ isa = PBXSourcesBuildPhase;
245
+ buildActionMask = 2147483647;
246
+ files = (
247
+ 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
248
+ );
249
+ runOnlyForDeploymentPostprocessing = 0;
250
+ };
251
+ /* End PBXSourcesBuildPhase section */
252
+
253
+ /* Begin XCBuildConfiguration section */
254
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
255
+ isa = XCBuildConfiguration;
256
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-example.debug.xcconfig */;
257
+ buildSettings = {
258
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
259
+ CLANG_ENABLE_MODULES = YES;
260
+ CURRENT_PROJECT_VERSION = 1;
261
+ ENABLE_BITCODE = NO;
262
+ INFOPLIST_FILE = example/Info.plist;
263
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
264
+ LD_RUNPATH_SEARCH_PATHS = (
265
+ "$(inherited)",
266
+ "@executable_path/Frameworks",
267
+ );
268
+ MARKETING_VERSION = 1.0;
269
+ OTHER_LDFLAGS = (
270
+ "$(inherited)",
271
+ "-ObjC",
272
+ "-lc++",
273
+ );
274
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
275
+ PRODUCT_NAME = example;
276
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
277
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
278
+ SWIFT_VERSION = 5.0;
279
+ TARGETED_DEVICE_FAMILY = "1,2";
280
+ VERSIONING_SYSTEM = "apple-generic";
281
+ };
282
+ name = Debug;
283
+ };
284
+ 13B07F951A680F5B00A75B9A /* Release */ = {
285
+ isa = XCBuildConfiguration;
286
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-example.release.xcconfig */;
287
+ buildSettings = {
288
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
289
+ CLANG_ENABLE_MODULES = YES;
290
+ CURRENT_PROJECT_VERSION = 1;
291
+ INFOPLIST_FILE = example/Info.plist;
292
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
293
+ LD_RUNPATH_SEARCH_PATHS = (
294
+ "$(inherited)",
295
+ "@executable_path/Frameworks",
296
+ );
297
+ MARKETING_VERSION = 1.0;
298
+ OTHER_LDFLAGS = (
299
+ "$(inherited)",
300
+ "-ObjC",
301
+ "-lc++",
302
+ );
303
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
304
+ PRODUCT_NAME = example;
305
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
306
+ SWIFT_VERSION = 5.0;
307
+ TARGETED_DEVICE_FAMILY = "1,2";
308
+ VERSIONING_SYSTEM = "apple-generic";
309
+ };
310
+ name = Release;
311
+ };
312
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
313
+ isa = XCBuildConfiguration;
314
+ buildSettings = {
315
+ ALWAYS_SEARCH_USER_PATHS = NO;
316
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
317
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
318
+ CLANG_CXX_LIBRARY = "libc++";
319
+ CLANG_ENABLE_MODULES = YES;
320
+ CLANG_ENABLE_OBJC_ARC = YES;
321
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
322
+ CLANG_WARN_BOOL_CONVERSION = YES;
323
+ CLANG_WARN_COMMA = YES;
324
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
325
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
326
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
327
+ CLANG_WARN_EMPTY_BODY = YES;
328
+ CLANG_WARN_ENUM_CONVERSION = YES;
329
+ CLANG_WARN_INFINITE_RECURSION = YES;
330
+ CLANG_WARN_INT_CONVERSION = YES;
331
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
332
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
333
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
334
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
335
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
336
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
337
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
338
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
339
+ CLANG_WARN_UNREACHABLE_CODE = YES;
340
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
341
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
342
+ COPY_PHASE_STRIP = NO;
343
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
344
+ ENABLE_TESTABILITY = YES;
345
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
346
+ GCC_C_LANGUAGE_STANDARD = gnu99;
347
+ GCC_DYNAMIC_NO_PIC = NO;
348
+ GCC_NO_COMMON_BLOCKS = YES;
349
+ GCC_OPTIMIZATION_LEVEL = 0;
350
+ GCC_PREPROCESSOR_DEFINITIONS = (
351
+ "DEBUG=1",
352
+ "$(inherited)",
353
+ );
354
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
355
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
356
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
357
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
358
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
359
+ GCC_WARN_UNUSED_FUNCTION = YES;
360
+ GCC_WARN_UNUSED_VARIABLE = YES;
361
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
362
+ LD_RUNPATH_SEARCH_PATHS = (
363
+ /usr/lib/swift,
364
+ "$(inherited)",
365
+ );
366
+ LIBRARY_SEARCH_PATHS = (
367
+ "\"$(SDKROOT)/usr/lib/swift\"",
368
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
369
+ "\"$(inherited)\"",
370
+ );
371
+ MTL_ENABLE_DEBUG_INFO = YES;
372
+ ONLY_ACTIVE_ARCH = YES;
373
+ OTHER_CPLUSPLUSFLAGS = (
374
+ "$(OTHER_CFLAGS)",
375
+ "-DFOLLY_NO_CONFIG",
376
+ "-DFOLLY_MOBILE=1",
377
+ "-DFOLLY_USE_LIBCPP=1",
378
+ "-DFOLLY_CFG_NO_COROUTINES=1",
379
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
380
+ );
381
+ SDKROOT = iphoneos;
382
+ };
383
+ name = Debug;
384
+ };
385
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
386
+ isa = XCBuildConfiguration;
387
+ buildSettings = {
388
+ ALWAYS_SEARCH_USER_PATHS = NO;
389
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
390
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
391
+ CLANG_CXX_LIBRARY = "libc++";
392
+ CLANG_ENABLE_MODULES = YES;
393
+ CLANG_ENABLE_OBJC_ARC = YES;
394
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
395
+ CLANG_WARN_BOOL_CONVERSION = YES;
396
+ CLANG_WARN_COMMA = YES;
397
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
398
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
399
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
400
+ CLANG_WARN_EMPTY_BODY = YES;
401
+ CLANG_WARN_ENUM_CONVERSION = YES;
402
+ CLANG_WARN_INFINITE_RECURSION = YES;
403
+ CLANG_WARN_INT_CONVERSION = YES;
404
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
405
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
406
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
407
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
408
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
409
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
410
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
411
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
412
+ CLANG_WARN_UNREACHABLE_CODE = YES;
413
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
414
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
415
+ COPY_PHASE_STRIP = YES;
416
+ ENABLE_NS_ASSERTIONS = NO;
417
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
418
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
419
+ GCC_C_LANGUAGE_STANDARD = gnu99;
420
+ GCC_NO_COMMON_BLOCKS = YES;
421
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
422
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
423
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
424
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
425
+ GCC_WARN_UNUSED_FUNCTION = YES;
426
+ GCC_WARN_UNUSED_VARIABLE = YES;
427
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
428
+ LD_RUNPATH_SEARCH_PATHS = (
429
+ /usr/lib/swift,
430
+ "$(inherited)",
431
+ );
432
+ LIBRARY_SEARCH_PATHS = (
433
+ "\"$(SDKROOT)/usr/lib/swift\"",
434
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
435
+ "\"$(inherited)\"",
436
+ );
437
+ MTL_ENABLE_DEBUG_INFO = NO;
438
+ OTHER_CPLUSPLUSFLAGS = (
439
+ "$(OTHER_CFLAGS)",
440
+ "-DFOLLY_NO_CONFIG",
441
+ "-DFOLLY_MOBILE=1",
442
+ "-DFOLLY_USE_LIBCPP=1",
443
+ "-DFOLLY_CFG_NO_COROUTINES=1",
444
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
445
+ );
446
+ SDKROOT = iphoneos;
447
+ VALIDATE_PRODUCT = YES;
448
+ };
449
+ name = Release;
450
+ };
451
+ /* End XCBuildConfiguration section */
452
+
453
+ /* Begin XCConfigurationList section */
454
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = {
455
+ isa = XCConfigurationList;
456
+ buildConfigurations = (
457
+ 13B07F941A680F5B00A75B9A /* Debug */,
458
+ 13B07F951A680F5B00A75B9A /* Release */,
459
+ );
460
+ defaultConfigurationIsVisible = 0;
461
+ defaultConfigurationName = Release;
462
+ };
463
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */ = {
464
+ isa = XCConfigurationList;
465
+ buildConfigurations = (
466
+ 83CBBA201A601CBA00E9B192 /* Debug */,
467
+ 83CBBA211A601CBA00E9B192 /* Release */,
468
+ );
469
+ defaultConfigurationIsVisible = 0;
470
+ defaultConfigurationName = Release;
471
+ };
472
+ /* End XCConfigurationList section */
473
+ };
474
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
475
+ }
@@ -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 = "example.app"
19
+ BlueprintName = "example"
20
+ ReferencedContainer = "container:example.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 = "exampleTests.xctest"
37
+ BlueprintName = "exampleTests"
38
+ ReferencedContainer = "container:example.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 = "example.app"
59
+ BlueprintName = "example"
60
+ ReferencedContainer = "container:example.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 = "example.app"
76
+ BlueprintName = "example"
77
+ ReferencedContainer = "container:example.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,3 @@
1
+ module.exports = {
2
+ preset: '@react-native/jest-preset',
3
+ };
@@ -0,0 +1,11 @@
1
+ const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
2
+
3
+ /**
4
+ * Metro configuration
5
+ * https://reactnative.dev/docs/metro
6
+ *
7
+ * @type {import('@react-native/metro-config').MetroConfig}
8
+ */
9
+ const config = {};
10
+
11
+ module.exports = mergeConfig(getDefaultConfig(__dirname), config);