@fadyshawky/react-native-magic 1.0.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.
Files changed (165) hide show
  1. package/.vscode/settings.json +7 -0
  2. package/README.md +269 -0
  3. package/package.json +36 -0
  4. package/template/.bundle/config +2 -0
  5. package/template/.env.development +5 -0
  6. package/template/.env.production +5 -0
  7. package/template/.env.staging +5 -0
  8. package/template/.eslintrc.js +4 -0
  9. package/template/.prettierrc.js +7 -0
  10. package/template/.watchmanconfig +1 -0
  11. package/template/App.tsx +34 -0
  12. package/template/Gemfile +9 -0
  13. package/template/Gemfile.lock +117 -0
  14. package/template/README.md +79 -0
  15. package/template/__tests__/App.test.tsx +17 -0
  16. package/template/android/app/build.gradle +128 -0
  17. package/template/android/app/debug.keystore +0 -0
  18. package/template/android/app/proguard-rules.pro +10 -0
  19. package/template/android/app/src/debug/AndroidManifest.xml +9 -0
  20. package/template/android/app/src/main/AndroidManifest.xml +26 -0
  21. package/template/android/app/src/main/java/com/reactnativemagic/MainActivity.kt +22 -0
  22. package/template/android/app/src/main/java/com/reactnativemagic/MainApplication.kt +44 -0
  23. package/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  24. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  25. package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  26. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  27. package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  28. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  29. package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  30. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  31. package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  32. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  33. package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  34. package/template/android/app/src/main/res/values/strings.xml +3 -0
  35. package/template/android/app/src/main/res/values/styles.xml +9 -0
  36. package/template/android/build.gradle +21 -0
  37. package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  38. package/template/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  39. package/template/android/gradle.properties +39 -0
  40. package/template/android/gradlew +252 -0
  41. package/template/android/gradlew.bat +94 -0
  42. package/template/android/settings.gradle +6 -0
  43. package/template/app.json +4 -0
  44. package/template/babel.config.js +3 -0
  45. package/template/index.js +9 -0
  46. package/template/install-dev.sh +1 -0
  47. package/template/install.sh +1 -0
  48. package/template/ios/.xcode.env +11 -0
  49. package/template/ios/Podfile +42 -0
  50. package/template/ios/Podfile.lock +2461 -0
  51. package/template/ios/reactnativemagic/AppDelegate.h +6 -0
  52. package/template/ios/reactnativemagic/AppDelegate.mm +31 -0
  53. package/template/ios/reactnativemagic/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  54. package/template/ios/reactnativemagic/Images.xcassets/Contents.json +6 -0
  55. package/template/ios/reactnativemagic/Info.plist +52 -0
  56. package/template/ios/reactnativemagic/LaunchScreen.storyboard +47 -0
  57. package/template/ios/reactnativemagic/PrivacyInfo.xcprivacy +46 -0
  58. package/template/ios/reactnativemagic/main.m +10 -0
  59. package/template/ios/reactnativemagic copy-Info.plist +52 -0
  60. package/template/ios/reactnativemagic.xcodeproj/project.pbxproj +836 -0
  61. package/template/ios/reactnativemagic.xcodeproj/xcshareddata/xcschemes/reactnativemagic.xcscheme +88 -0
  62. package/template/ios/reactnativemagic.xcworkspace/contents.xcworkspacedata +10 -0
  63. package/template/ios/reactnativemagic.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
  64. package/template/ios/reactnativemagicTests/Info.plist +24 -0
  65. package/template/ios/reactnativemagicTests/reactnativemagicTests.m +66 -0
  66. package/template/ios/tmp.xcconfig +2 -0
  67. package/template/jest.config.js +3 -0
  68. package/template/metro.config.js +11 -0
  69. package/template/package-lock.json +18315 -0
  70. package/template/package.json +125 -0
  71. package/template/resources/symbols/SFSymbols.ts +2614 -0
  72. package/template/src/common/ImageResources.g.ts +14 -0
  73. package/template/src/common/components/Background.tsx +34 -0
  74. package/template/src/common/components/EmptyView.tsx +31 -0
  75. package/template/src/common/components/FlatListWrapper.tsx +66 -0
  76. package/template/src/common/components/IconPlatform.tsx +17 -0
  77. package/template/src/common/components/ImageCropPickerButton.tsx +108 -0
  78. package/template/src/common/components/LoadingComponent.tsx +16 -0
  79. package/template/src/common/components/PhotoTakingButton.tsx +99 -0
  80. package/template/src/common/components/PrimaryButton.tsx +305 -0
  81. package/template/src/common/components/PrimaryTextInput.tsx +287 -0
  82. package/template/src/common/components/RadioButton.tsx +73 -0
  83. package/template/src/common/components/RadioIcon.tsx +63 -0
  84. package/template/src/common/components/Separator.tsx +39 -0
  85. package/template/src/common/components/Svg.tsx +25 -0
  86. package/template/src/common/components/TouchablePlatform.tsx +70 -0
  87. package/template/src/common/components/TryAgain.tsx +56 -0
  88. package/template/src/common/helpers/arrayHelpers.ts +29 -0
  89. package/template/src/common/helpers/calculatePage.ts +16 -0
  90. package/template/src/common/helpers/colorHelpers.ts +34 -0
  91. package/template/src/common/helpers/defaultKeyIdExtractor.ts +5 -0
  92. package/template/src/common/helpers/dialogsHelpers.ts +66 -0
  93. package/template/src/common/helpers/imageHelpers.ts +5 -0
  94. package/template/src/common/helpers/inAppReviewHelper.ts +31 -0
  95. package/template/src/common/helpers/netInfoHelpers.ts +42 -0
  96. package/template/src/common/helpers/orientationHelpers.ts +25 -0
  97. package/template/src/common/helpers/regexHelpers.ts +7 -0
  98. package/template/src/common/helpers/shareHelpers.ts +47 -0
  99. package/template/src/common/helpers/stringsHelpers.ts +15 -0
  100. package/template/src/common/hooks/useBackHandler.ts +10 -0
  101. package/template/src/common/hooks/useDebounce.ts +17 -0
  102. package/template/src/common/hooks/useEventRegister.ts +50 -0
  103. package/template/src/common/hooks/useFlatListActions.ts +31 -0
  104. package/template/src/common/hooks/usePrevious.ts +11 -0
  105. package/template/src/common/hooks/useWhyDidYouUpdate.ts +27 -0
  106. package/template/src/common/localization/dateFormatter.ts +108 -0
  107. package/template/src/common/localization/intlFormatter.ts +37 -0
  108. package/template/src/common/localization/localization.ts +51 -0
  109. package/template/src/common/localization/translations/commonLocalization.ts +29 -0
  110. package/template/src/common/localization/translations/emptyLocalization.ts +6 -0
  111. package/template/src/common/localization/translations/errorsLocalization.ts +22 -0
  112. package/template/src/common/localization/translations/homeLocalization.ts +5 -0
  113. package/template/src/common/localization/translations/loginLocalization.ts +14 -0
  114. package/template/src/common/localization/translations/onboardingLocalization.ts +13 -0
  115. package/template/src/common/localization/translations/pagesLocalization.ts +14 -0
  116. package/template/src/common/localization/translations/profileLocalization.ts +6 -0
  117. package/template/src/common/urls/baseUrlOpener.ts +31 -0
  118. package/template/src/common/urls/emailUrl.ts +20 -0
  119. package/template/src/common/urls/httpUrl.ts +19 -0
  120. package/template/src/common/urls/mapUrl.ts +22 -0
  121. package/template/src/common/urls/phoneUrl.ts +16 -0
  122. package/template/src/common/utils/createPerfectSize.ts +15 -0
  123. package/template/src/common/utils/listHandlers.ts +30 -0
  124. package/template/src/common/utils/newState.ts +5 -0
  125. package/template/src/common/utils/serializeQueryParams.ts +10 -0
  126. package/template/src/common/validations/authValidations.ts +15 -0
  127. package/template/src/common/validations/commonValidations.ts +39 -0
  128. package/template/src/common/validations/errorValidations.ts +72 -0
  129. package/template/src/common/validations/hooks/useDatesError.ts +40 -0
  130. package/template/src/common/validations/hooks/useInputError.ts +30 -0
  131. package/template/src/common/validations/profileValidations.ts +30 -0
  132. package/template/src/common/validations/validationConstants.ts +20 -0
  133. package/template/src/core/api/responseHandlers.ts +43 -0
  134. package/template/src/core/api/serverHeaders.ts +39 -0
  135. package/template/src/core/store/app/appSlice.ts +12 -0
  136. package/template/src/core/store/app/appState.ts +3 -0
  137. package/template/src/core/store/reduxHelpers.ts +11 -0
  138. package/template/src/core/store/rootReducer.ts +10 -0
  139. package/template/src/core/store/store.tsx +41 -0
  140. package/template/src/core/store/user/userActions.ts +31 -0
  141. package/template/src/core/store/user/userSlice.ts +62 -0
  142. package/template/src/core/store/user/userState.ts +44 -0
  143. package/template/src/core/theme/colors.ts +117 -0
  144. package/template/src/core/theme/commonConsts.ts +45 -0
  145. package/template/src/core/theme/commonSizes.ts +70 -0
  146. package/template/src/core/theme/commonStyles.ts +228 -0
  147. package/template/src/core/theme/fonts.ts +12 -0
  148. package/template/src/navigation/AuthStack.tsx +39 -0
  149. package/template/src/navigation/HeaderComponents.tsx +104 -0
  150. package/template/src/navigation/MainNavigation.tsx +55 -0
  151. package/template/src/navigation/MainStack.tsx +99 -0
  152. package/template/src/navigation/RootNavigation.tsx +33 -0
  153. package/template/src/navigation/TabBar.tsx +94 -0
  154. package/template/src/navigation/TopTabBar.tsx +75 -0
  155. package/template/src/navigation/types.ts +5 -0
  156. package/template/src/screens/Login/Login.tsx +114 -0
  157. package/template/src/screens/Settings/Settings.tsx +5 -0
  158. package/template/src/screens/main/Main.tsx +5 -0
  159. package/template/src/screens/profile/Profile.tsx +5 -0
  160. package/template/src/screens/splash/Splash.tsx +19 -0
  161. package/template/src/sheetManager/sheets.tsx +14 -0
  162. package/template/tsconfig.json +3 -0
  163. package/template/types/index.ts +108 -0
  164. package/template/types/react-native-config.d.ts +19 -0
  165. package/template.config.js +4 -0
@@ -0,0 +1,836 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* reactnativemagicTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* reactnativemagicTests.m */; };
11
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
12
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
14
+ 2EB19E170436F2240869C74D /* libPods-reactnativemagic-reactnativemagicTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 88B7711713033C7CA772CC5A /* libPods-reactnativemagic-reactnativemagicTests.a */; };
15
+ 52BF1DA92D160E8100046137 /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
16
+ 52BF1DAA2D160E8100046137 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
17
+ 52BF1DAE2D160E8100046137 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
18
+ 52BF1DAF2D160E8100046137 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
19
+ 52BF1DB02D160E8100046137 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
20
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
21
+ 910638E3E666DD629C55D964 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
22
+ 92CDC4BCD7C656685F12FD05 /* libPods-reactnativemagic.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 64FD7998A0A13F1331F49A70 /* libPods-reactnativemagic.a */; };
23
+ /* End PBXBuildFile section */
24
+
25
+ /* Begin PBXContainerItemProxy section */
26
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
27
+ isa = PBXContainerItemProxy;
28
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
29
+ proxyType = 1;
30
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
31
+ remoteInfo = reactnativemagic;
32
+ };
33
+ /* End PBXContainerItemProxy section */
34
+
35
+ /* Begin PBXFileReference section */
36
+ 00E356EE1AD99517003FC87E /* reactnativemagicTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = reactnativemagicTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
37
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
38
+ 00E356F21AD99517003FC87E /* reactnativemagicTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = reactnativemagicTests.m; sourceTree = "<group>"; };
39
+ 0459385EB34562674A60ACD4 /* Pods-reactnativemagic-reactnativemagicTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativemagic-reactnativemagicTests.release.xcconfig"; path = "Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests.release.xcconfig"; sourceTree = "<group>"; };
40
+ 13B07F961A680F5B00A75B9A /* reactnativemagic.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = reactnativemagic.app; sourceTree = BUILT_PRODUCTS_DIR; };
41
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = reactnativemagic/AppDelegate.h; sourceTree = "<group>"; };
42
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = reactnativemagic/AppDelegate.mm; sourceTree = "<group>"; };
43
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = reactnativemagic/Images.xcassets; sourceTree = "<group>"; };
44
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = reactnativemagic/Info.plist; sourceTree = "<group>"; };
45
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = reactnativemagic/main.m; sourceTree = "<group>"; };
46
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = reactnativemagic/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
47
+ 13C0C622B85E633E39405E88 /* Pods-reactnativemagic-reactnativemagicTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativemagic-reactnativemagicTests.debug.xcconfig"; path = "Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests.debug.xcconfig"; sourceTree = "<group>"; };
48
+ 371159198BD2963DD892B8F2 /* Pods-reactnativemagic.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativemagic.debug.xcconfig"; path = "Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic.debug.xcconfig"; sourceTree = "<group>"; };
49
+ 52BF1DB72D160E8100046137 /* reactnativemagic-Development.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "reactnativemagic-Development.app"; sourceTree = BUILT_PRODUCTS_DIR; };
50
+ 52BF1DB82D160E8100046137 /* reactnativemagic copy-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "reactnativemagic copy-Info.plist"; path = "/Users/fady/Dev/template/ReactNativeMagic/template/ios/reactnativemagic copy-Info.plist"; sourceTree = "<absolute>"; };
51
+ 5FD07C842F475E341C19BDA1 /* Pods-reactnativemagic.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativemagic.release.xcconfig"; path = "Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic.release.xcconfig"; sourceTree = "<group>"; };
52
+ 64FD7998A0A13F1331F49A70 /* libPods-reactnativemagic.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-reactnativemagic.a"; sourceTree = BUILT_PRODUCTS_DIR; };
53
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = reactnativemagic/LaunchScreen.storyboard; sourceTree = "<group>"; };
54
+ 88B7711713033C7CA772CC5A /* libPods-reactnativemagic-reactnativemagicTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-reactnativemagic-reactnativemagicTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
55
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
56
+ /* End PBXFileReference section */
57
+
58
+ /* Begin PBXFrameworksBuildPhase section */
59
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
60
+ isa = PBXFrameworksBuildPhase;
61
+ buildActionMask = 2147483647;
62
+ files = (
63
+ 2EB19E170436F2240869C74D /* libPods-reactnativemagic-reactnativemagicTests.a in Frameworks */,
64
+ );
65
+ runOnlyForDeploymentPostprocessing = 0;
66
+ };
67
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
68
+ isa = PBXFrameworksBuildPhase;
69
+ buildActionMask = 2147483647;
70
+ files = (
71
+ 92CDC4BCD7C656685F12FD05 /* libPods-reactnativemagic.a in Frameworks */,
72
+ );
73
+ runOnlyForDeploymentPostprocessing = 0;
74
+ };
75
+ 52BF1DAB2D160E8100046137 /* Frameworks */ = {
76
+ isa = PBXFrameworksBuildPhase;
77
+ buildActionMask = 2147483647;
78
+ files = (
79
+ );
80
+ runOnlyForDeploymentPostprocessing = 0;
81
+ };
82
+ /* End PBXFrameworksBuildPhase section */
83
+
84
+ /* Begin PBXGroup section */
85
+ 00E356EF1AD99517003FC87E /* reactnativemagicTests */ = {
86
+ isa = PBXGroup;
87
+ children = (
88
+ 00E356F21AD99517003FC87E /* reactnativemagicTests.m */,
89
+ 00E356F01AD99517003FC87E /* Supporting Files */,
90
+ );
91
+ path = reactnativemagicTests;
92
+ sourceTree = "<group>";
93
+ };
94
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
95
+ isa = PBXGroup;
96
+ children = (
97
+ 00E356F11AD99517003FC87E /* Info.plist */,
98
+ );
99
+ name = "Supporting Files";
100
+ sourceTree = "<group>";
101
+ };
102
+ 13B07FAE1A68108700A75B9A /* reactnativemagic */ = {
103
+ isa = PBXGroup;
104
+ children = (
105
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
106
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
107
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
108
+ 13B07FB61A68108700A75B9A /* Info.plist */,
109
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
110
+ 13B07FB71A68108700A75B9A /* main.m */,
111
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
112
+ );
113
+ name = reactnativemagic;
114
+ sourceTree = "<group>";
115
+ };
116
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
117
+ isa = PBXGroup;
118
+ children = (
119
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
120
+ 64FD7998A0A13F1331F49A70 /* libPods-reactnativemagic.a */,
121
+ 88B7711713033C7CA772CC5A /* libPods-reactnativemagic-reactnativemagicTests.a */,
122
+ );
123
+ name = Frameworks;
124
+ sourceTree = "<group>";
125
+ };
126
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
127
+ isa = PBXGroup;
128
+ children = (
129
+ );
130
+ name = Libraries;
131
+ sourceTree = "<group>";
132
+ };
133
+ 83CBB9F61A601CBA00E9B192 = {
134
+ isa = PBXGroup;
135
+ children = (
136
+ 13B07FAE1A68108700A75B9A /* reactnativemagic */,
137
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
138
+ 00E356EF1AD99517003FC87E /* reactnativemagicTests */,
139
+ 83CBBA001A601CBA00E9B192 /* Products */,
140
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
141
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
142
+ 52BF1DB82D160E8100046137 /* reactnativemagic copy-Info.plist */,
143
+ );
144
+ indentWidth = 2;
145
+ sourceTree = "<group>";
146
+ tabWidth = 2;
147
+ usesTabs = 0;
148
+ };
149
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
150
+ isa = PBXGroup;
151
+ children = (
152
+ 13B07F961A680F5B00A75B9A /* reactnativemagic.app */,
153
+ 00E356EE1AD99517003FC87E /* reactnativemagicTests.xctest */,
154
+ 52BF1DB72D160E8100046137 /* reactnativemagic-Development.app */,
155
+ );
156
+ name = Products;
157
+ sourceTree = "<group>";
158
+ };
159
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
160
+ isa = PBXGroup;
161
+ children = (
162
+ 371159198BD2963DD892B8F2 /* Pods-reactnativemagic.debug.xcconfig */,
163
+ 5FD07C842F475E341C19BDA1 /* Pods-reactnativemagic.release.xcconfig */,
164
+ 13C0C622B85E633E39405E88 /* Pods-reactnativemagic-reactnativemagicTests.debug.xcconfig */,
165
+ 0459385EB34562674A60ACD4 /* Pods-reactnativemagic-reactnativemagicTests.release.xcconfig */,
166
+ );
167
+ path = Pods;
168
+ sourceTree = "<group>";
169
+ };
170
+ /* End PBXGroup section */
171
+
172
+ /* Begin PBXNativeTarget section */
173
+ 00E356ED1AD99517003FC87E /* reactnativemagicTests */ = {
174
+ isa = PBXNativeTarget;
175
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "reactnativemagicTests" */;
176
+ buildPhases = (
177
+ 2923B72611D6C6B0D9E89C5B /* [CP] Check Pods Manifest.lock */,
178
+ 00E356EA1AD99517003FC87E /* Sources */,
179
+ 00E356EB1AD99517003FC87E /* Frameworks */,
180
+ 00E356EC1AD99517003FC87E /* Resources */,
181
+ 3730A4CB7BAA1C4D8E6D1F19 /* [CP] Embed Pods Frameworks */,
182
+ 06A122C3D8E1FAC2C4C6FD74 /* [CP] Copy Pods Resources */,
183
+ );
184
+ buildRules = (
185
+ );
186
+ dependencies = (
187
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
188
+ );
189
+ name = reactnativemagicTests;
190
+ productName = reactnativemagicTests;
191
+ productReference = 00E356EE1AD99517003FC87E /* reactnativemagicTests.xctest */;
192
+ productType = "com.apple.product-type.bundle.unit-test";
193
+ };
194
+ 13B07F861A680F5B00A75B9A /* reactnativemagic */ = {
195
+ isa = PBXNativeTarget;
196
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativemagic" */;
197
+ buildPhases = (
198
+ BC60905F8EAE40CF3651D00D /* [CP] Check Pods Manifest.lock */,
199
+ 13B07F871A680F5B00A75B9A /* Sources */,
200
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
201
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
202
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
203
+ EA40762B2029995BE13C9198 /* [CP] Embed Pods Frameworks */,
204
+ D3D61519FA1995ECADE2502B /* [CP] Copy Pods Resources */,
205
+ );
206
+ buildRules = (
207
+ );
208
+ dependencies = (
209
+ );
210
+ name = reactnativemagic;
211
+ productName = reactnativemagic;
212
+ productReference = 13B07F961A680F5B00A75B9A /* reactnativemagic.app */;
213
+ productType = "com.apple.product-type.application";
214
+ };
215
+ 52BF1DA62D160E8100046137 /* reactnativemagic-Development */ = {
216
+ isa = PBXNativeTarget;
217
+ buildConfigurationList = 52BF1DB42D160E8100046137 /* Build configuration list for PBXNativeTarget "reactnativemagic-Development" */;
218
+ buildPhases = (
219
+ 52BF1DA82D160E8100046137 /* Sources */,
220
+ 52BF1DAB2D160E8100046137 /* Frameworks */,
221
+ 52BF1DAD2D160E8100046137 /* Resources */,
222
+ 52BF1DB12D160E8100046137 /* Bundle React Native code and images */,
223
+ );
224
+ buildRules = (
225
+ );
226
+ dependencies = (
227
+ );
228
+ name = "reactnativemagic-Development";
229
+ productName = reactnativemagic;
230
+ productReference = 52BF1DB72D160E8100046137 /* reactnativemagic-Development.app */;
231
+ productType = "com.apple.product-type.application";
232
+ };
233
+ /* End PBXNativeTarget section */
234
+
235
+ /* Begin PBXProject section */
236
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
237
+ isa = PBXProject;
238
+ attributes = {
239
+ LastUpgradeCheck = 1210;
240
+ TargetAttributes = {
241
+ 00E356ED1AD99517003FC87E = {
242
+ CreatedOnToolsVersion = 6.2;
243
+ TestTargetID = 13B07F861A680F5B00A75B9A;
244
+ };
245
+ 13B07F861A680F5B00A75B9A = {
246
+ LastSwiftMigration = 1120;
247
+ };
248
+ };
249
+ };
250
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactnativemagic" */;
251
+ compatibilityVersion = "Xcode 12.0";
252
+ developmentRegion = en;
253
+ hasScannedForEncodings = 0;
254
+ knownRegions = (
255
+ en,
256
+ Base,
257
+ );
258
+ mainGroup = 83CBB9F61A601CBA00E9B192;
259
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
260
+ projectDirPath = "";
261
+ projectRoot = "";
262
+ targets = (
263
+ 13B07F861A680F5B00A75B9A /* reactnativemagic */,
264
+ 00E356ED1AD99517003FC87E /* reactnativemagicTests */,
265
+ 52BF1DA62D160E8100046137 /* reactnativemagic-Development */,
266
+ );
267
+ };
268
+ /* End PBXProject section */
269
+
270
+ /* Begin PBXResourcesBuildPhase section */
271
+ 00E356EC1AD99517003FC87E /* Resources */ = {
272
+ isa = PBXResourcesBuildPhase;
273
+ buildActionMask = 2147483647;
274
+ files = (
275
+ );
276
+ runOnlyForDeploymentPostprocessing = 0;
277
+ };
278
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
279
+ isa = PBXResourcesBuildPhase;
280
+ buildActionMask = 2147483647;
281
+ files = (
282
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
283
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
284
+ 910638E3E666DD629C55D964 /* PrivacyInfo.xcprivacy in Resources */,
285
+ );
286
+ runOnlyForDeploymentPostprocessing = 0;
287
+ };
288
+ 52BF1DAD2D160E8100046137 /* Resources */ = {
289
+ isa = PBXResourcesBuildPhase;
290
+ buildActionMask = 2147483647;
291
+ files = (
292
+ 52BF1DAE2D160E8100046137 /* LaunchScreen.storyboard in Resources */,
293
+ 52BF1DAF2D160E8100046137 /* Images.xcassets in Resources */,
294
+ 52BF1DB02D160E8100046137 /* PrivacyInfo.xcprivacy in Resources */,
295
+ );
296
+ runOnlyForDeploymentPostprocessing = 0;
297
+ };
298
+ /* End PBXResourcesBuildPhase section */
299
+
300
+ /* Begin PBXShellScriptBuildPhase section */
301
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
302
+ isa = PBXShellScriptBuildPhase;
303
+ buildActionMask = 2147483647;
304
+ files = (
305
+ );
306
+ inputPaths = (
307
+ "$(SRCROOT)/.xcode.env.local",
308
+ "$(SRCROOT)/.xcode.env",
309
+ );
310
+ name = "Bundle React Native code and images";
311
+ outputPaths = (
312
+ );
313
+ runOnlyForDeploymentPostprocessing = 0;
314
+ shellPath = /bin/sh;
315
+ 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";
316
+ };
317
+ 06A122C3D8E1FAC2C4C6FD74 /* [CP] Copy Pods Resources */ = {
318
+ isa = PBXShellScriptBuildPhase;
319
+ buildActionMask = 2147483647;
320
+ files = (
321
+ );
322
+ inputFileListPaths = (
323
+ "${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-resources-${CONFIGURATION}-input-files.xcfilelist",
324
+ );
325
+ name = "[CP] Copy Pods Resources";
326
+ outputFileListPaths = (
327
+ "${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-resources-${CONFIGURATION}-output-files.xcfilelist",
328
+ );
329
+ runOnlyForDeploymentPostprocessing = 0;
330
+ shellPath = /bin/sh;
331
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-resources.sh\"\n";
332
+ showEnvVarsInLog = 0;
333
+ };
334
+ 2923B72611D6C6B0D9E89C5B /* [CP] Check Pods Manifest.lock */ = {
335
+ isa = PBXShellScriptBuildPhase;
336
+ buildActionMask = 2147483647;
337
+ files = (
338
+ );
339
+ inputFileListPaths = (
340
+ );
341
+ inputPaths = (
342
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
343
+ "${PODS_ROOT}/Manifest.lock",
344
+ );
345
+ name = "[CP] Check Pods Manifest.lock";
346
+ outputFileListPaths = (
347
+ );
348
+ outputPaths = (
349
+ "$(DERIVED_FILE_DIR)/Pods-reactnativemagic-reactnativemagicTests-checkManifestLockResult.txt",
350
+ );
351
+ runOnlyForDeploymentPostprocessing = 0;
352
+ shellPath = /bin/sh;
353
+ 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";
354
+ showEnvVarsInLog = 0;
355
+ };
356
+ 3730A4CB7BAA1C4D8E6D1F19 /* [CP] Embed Pods Frameworks */ = {
357
+ isa = PBXShellScriptBuildPhase;
358
+ buildActionMask = 2147483647;
359
+ files = (
360
+ );
361
+ inputFileListPaths = (
362
+ "${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
363
+ );
364
+ name = "[CP] Embed Pods Frameworks";
365
+ outputFileListPaths = (
366
+ "${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
367
+ );
368
+ runOnlyForDeploymentPostprocessing = 0;
369
+ shellPath = /bin/sh;
370
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic-reactnativemagicTests/Pods-reactnativemagic-reactnativemagicTests-frameworks.sh\"\n";
371
+ showEnvVarsInLog = 0;
372
+ };
373
+ 52BF1DB12D160E8100046137 /* Bundle React Native code and images */ = {
374
+ isa = PBXShellScriptBuildPhase;
375
+ buildActionMask = 2147483647;
376
+ files = (
377
+ );
378
+ inputPaths = (
379
+ "$(SRCROOT)/.xcode.env.local",
380
+ "$(SRCROOT)/.xcode.env",
381
+ );
382
+ name = "Bundle React Native code and images";
383
+ outputPaths = (
384
+ );
385
+ runOnlyForDeploymentPostprocessing = 0;
386
+ shellPath = /bin/sh;
387
+ 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";
388
+ };
389
+ BC60905F8EAE40CF3651D00D /* [CP] Check Pods Manifest.lock */ = {
390
+ isa = PBXShellScriptBuildPhase;
391
+ buildActionMask = 2147483647;
392
+ files = (
393
+ );
394
+ inputFileListPaths = (
395
+ );
396
+ inputPaths = (
397
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
398
+ "${PODS_ROOT}/Manifest.lock",
399
+ );
400
+ name = "[CP] Check Pods Manifest.lock";
401
+ outputFileListPaths = (
402
+ );
403
+ outputPaths = (
404
+ "$(DERIVED_FILE_DIR)/Pods-reactnativemagic-checkManifestLockResult.txt",
405
+ );
406
+ runOnlyForDeploymentPostprocessing = 0;
407
+ shellPath = /bin/sh;
408
+ 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";
409
+ showEnvVarsInLog = 0;
410
+ };
411
+ D3D61519FA1995ECADE2502B /* [CP] Copy Pods Resources */ = {
412
+ isa = PBXShellScriptBuildPhase;
413
+ buildActionMask = 2147483647;
414
+ files = (
415
+ );
416
+ inputFileListPaths = (
417
+ "${PODS_ROOT}/Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic-resources-${CONFIGURATION}-input-files.xcfilelist",
418
+ );
419
+ name = "[CP] Copy Pods Resources";
420
+ outputFileListPaths = (
421
+ "${PODS_ROOT}/Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic-resources-${CONFIGURATION}-output-files.xcfilelist",
422
+ );
423
+ runOnlyForDeploymentPostprocessing = 0;
424
+ shellPath = /bin/sh;
425
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic-resources.sh\"\n";
426
+ showEnvVarsInLog = 0;
427
+ };
428
+ EA40762B2029995BE13C9198 /* [CP] Embed Pods Frameworks */ = {
429
+ isa = PBXShellScriptBuildPhase;
430
+ buildActionMask = 2147483647;
431
+ files = (
432
+ );
433
+ inputFileListPaths = (
434
+ "${PODS_ROOT}/Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic-frameworks-${CONFIGURATION}-input-files.xcfilelist",
435
+ );
436
+ name = "[CP] Embed Pods Frameworks";
437
+ outputFileListPaths = (
438
+ "${PODS_ROOT}/Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic-frameworks-${CONFIGURATION}-output-files.xcfilelist",
439
+ );
440
+ runOnlyForDeploymentPostprocessing = 0;
441
+ shellPath = /bin/sh;
442
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativemagic/Pods-reactnativemagic-frameworks.sh\"\n";
443
+ showEnvVarsInLog = 0;
444
+ };
445
+ /* End PBXShellScriptBuildPhase section */
446
+
447
+ /* Begin PBXSourcesBuildPhase section */
448
+ 00E356EA1AD99517003FC87E /* Sources */ = {
449
+ isa = PBXSourcesBuildPhase;
450
+ buildActionMask = 2147483647;
451
+ files = (
452
+ 00E356F31AD99517003FC87E /* reactnativemagicTests.m in Sources */,
453
+ );
454
+ runOnlyForDeploymentPostprocessing = 0;
455
+ };
456
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
457
+ isa = PBXSourcesBuildPhase;
458
+ buildActionMask = 2147483647;
459
+ files = (
460
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
461
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
462
+ );
463
+ runOnlyForDeploymentPostprocessing = 0;
464
+ };
465
+ 52BF1DA82D160E8100046137 /* Sources */ = {
466
+ isa = PBXSourcesBuildPhase;
467
+ buildActionMask = 2147483647;
468
+ files = (
469
+ 52BF1DA92D160E8100046137 /* AppDelegate.mm in Sources */,
470
+ 52BF1DAA2D160E8100046137 /* main.m in Sources */,
471
+ );
472
+ runOnlyForDeploymentPostprocessing = 0;
473
+ };
474
+ /* End PBXSourcesBuildPhase section */
475
+
476
+ /* Begin PBXTargetDependency section */
477
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
478
+ isa = PBXTargetDependency;
479
+ target = 13B07F861A680F5B00A75B9A /* reactnativemagic */;
480
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
481
+ };
482
+ /* End PBXTargetDependency section */
483
+
484
+ /* Begin XCBuildConfiguration section */
485
+ 00E356F61AD99517003FC87E /* Debug */ = {
486
+ isa = XCBuildConfiguration;
487
+ baseConfigurationReference = 13C0C622B85E633E39405E88 /* Pods-reactnativemagic-reactnativemagicTests.debug.xcconfig */;
488
+ buildSettings = {
489
+ BUNDLE_LOADER = "$(TEST_HOST)";
490
+ GCC_PREPROCESSOR_DEFINITIONS = (
491
+ "DEBUG=1",
492
+ "$(inherited)",
493
+ );
494
+ INFOPLIST_FILE = reactnativemagicTests/Info.plist;
495
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
496
+ LD_RUNPATH_SEARCH_PATHS = (
497
+ "$(inherited)",
498
+ "@executable_path/Frameworks",
499
+ "@loader_path/Frameworks",
500
+ );
501
+ OTHER_LDFLAGS = (
502
+ "-ObjC",
503
+ "-lc++",
504
+ "$(inherited)",
505
+ );
506
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
507
+ PRODUCT_NAME = "$(TARGET_NAME)";
508
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactnativemagic.app/reactnativemagic";
509
+ };
510
+ name = Debug;
511
+ };
512
+ 00E356F71AD99517003FC87E /* Release */ = {
513
+ isa = XCBuildConfiguration;
514
+ baseConfigurationReference = 0459385EB34562674A60ACD4 /* Pods-reactnativemagic-reactnativemagicTests.release.xcconfig */;
515
+ buildSettings = {
516
+ BUNDLE_LOADER = "$(TEST_HOST)";
517
+ COPY_PHASE_STRIP = NO;
518
+ INFOPLIST_FILE = reactnativemagicTests/Info.plist;
519
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
520
+ LD_RUNPATH_SEARCH_PATHS = (
521
+ "$(inherited)",
522
+ "@executable_path/Frameworks",
523
+ "@loader_path/Frameworks",
524
+ );
525
+ OTHER_LDFLAGS = (
526
+ "-ObjC",
527
+ "-lc++",
528
+ "$(inherited)",
529
+ );
530
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
531
+ PRODUCT_NAME = "$(TARGET_NAME)";
532
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/reactnativemagic.app/reactnativemagic";
533
+ };
534
+ name = Release;
535
+ };
536
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
537
+ isa = XCBuildConfiguration;
538
+ baseConfigurationReference = 371159198BD2963DD892B8F2 /* Pods-reactnativemagic.debug.xcconfig */;
539
+ buildSettings = {
540
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
541
+ CLANG_ENABLE_MODULES = YES;
542
+ CURRENT_PROJECT_VERSION = 1;
543
+ ENABLE_BITCODE = NO;
544
+ INFOPLIST_FILE = reactnativemagic/Info.plist;
545
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
546
+ LD_RUNPATH_SEARCH_PATHS = (
547
+ "$(inherited)",
548
+ "@executable_path/Frameworks",
549
+ );
550
+ MARKETING_VERSION = 1.0;
551
+ OTHER_LDFLAGS = (
552
+ "$(inherited)",
553
+ "-ObjC",
554
+ "-lc++",
555
+ );
556
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
557
+ PRODUCT_NAME = reactnativemagic;
558
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
559
+ SUPPORTS_MACCATALYST = NO;
560
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
561
+ SWIFT_VERSION = 5.0;
562
+ TARGETED_DEVICE_FAMILY = "1,2";
563
+ VERSIONING_SYSTEM = "apple-generic";
564
+ };
565
+ name = Debug;
566
+ };
567
+ 13B07F951A680F5B00A75B9A /* Release */ = {
568
+ isa = XCBuildConfiguration;
569
+ baseConfigurationReference = 5FD07C842F475E341C19BDA1 /* Pods-reactnativemagic.release.xcconfig */;
570
+ buildSettings = {
571
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
572
+ CLANG_ENABLE_MODULES = YES;
573
+ CURRENT_PROJECT_VERSION = 1;
574
+ INFOPLIST_FILE = reactnativemagic/Info.plist;
575
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
576
+ LD_RUNPATH_SEARCH_PATHS = (
577
+ "$(inherited)",
578
+ "@executable_path/Frameworks",
579
+ );
580
+ MARKETING_VERSION = 1.0;
581
+ OTHER_LDFLAGS = (
582
+ "$(inherited)",
583
+ "-ObjC",
584
+ "-lc++",
585
+ );
586
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
587
+ PRODUCT_NAME = reactnativemagic;
588
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
589
+ SUPPORTS_MACCATALYST = NO;
590
+ SWIFT_VERSION = 5.0;
591
+ TARGETED_DEVICE_FAMILY = "1,2";
592
+ VERSIONING_SYSTEM = "apple-generic";
593
+ };
594
+ name = Release;
595
+ };
596
+ 52BF1DB52D160E8100046137 /* Debug */ = {
597
+ isa = XCBuildConfiguration;
598
+ buildSettings = {
599
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
600
+ CLANG_ENABLE_MODULES = YES;
601
+ CURRENT_PROJECT_VERSION = 1;
602
+ ENABLE_BITCODE = NO;
603
+ INFOPLIST_FILE = "reactnativemagic copy-Info.plist";
604
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
605
+ LD_RUNPATH_SEARCH_PATHS = (
606
+ "$(inherited)",
607
+ "@executable_path/Frameworks",
608
+ );
609
+ MARKETING_VERSION = 1.0;
610
+ OTHER_LDFLAGS = (
611
+ "$(inherited)",
612
+ "-ObjC",
613
+ "-lc++",
614
+ );
615
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
616
+ PRODUCT_NAME = "$(TARGET_NAME)";
617
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
618
+ SWIFT_VERSION = 5.0;
619
+ VERSIONING_SYSTEM = "apple-generic";
620
+ };
621
+ name = Debug;
622
+ };
623
+ 52BF1DB62D160E8100046137 /* Release */ = {
624
+ isa = XCBuildConfiguration;
625
+ buildSettings = {
626
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
627
+ CLANG_ENABLE_MODULES = YES;
628
+ CURRENT_PROJECT_VERSION = 1;
629
+ INFOPLIST_FILE = "reactnativemagic copy-Info.plist";
630
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
631
+ LD_RUNPATH_SEARCH_PATHS = (
632
+ "$(inherited)",
633
+ "@executable_path/Frameworks",
634
+ );
635
+ MARKETING_VERSION = 1.0;
636
+ OTHER_LDFLAGS = (
637
+ "$(inherited)",
638
+ "-ObjC",
639
+ "-lc++",
640
+ );
641
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
642
+ PRODUCT_NAME = "$(TARGET_NAME)";
643
+ SWIFT_VERSION = 5.0;
644
+ VERSIONING_SYSTEM = "apple-generic";
645
+ };
646
+ name = Release;
647
+ };
648
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
649
+ isa = XCBuildConfiguration;
650
+ buildSettings = {
651
+ ALWAYS_SEARCH_USER_PATHS = NO;
652
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
653
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
654
+ CLANG_CXX_LIBRARY = "libc++";
655
+ CLANG_ENABLE_MODULES = YES;
656
+ CLANG_ENABLE_OBJC_ARC = YES;
657
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
658
+ CLANG_WARN_BOOL_CONVERSION = YES;
659
+ CLANG_WARN_COMMA = YES;
660
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
661
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
662
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
663
+ CLANG_WARN_EMPTY_BODY = YES;
664
+ CLANG_WARN_ENUM_CONVERSION = YES;
665
+ CLANG_WARN_INFINITE_RECURSION = YES;
666
+ CLANG_WARN_INT_CONVERSION = YES;
667
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
668
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
669
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
670
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
671
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
672
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
673
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
674
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
675
+ CLANG_WARN_UNREACHABLE_CODE = YES;
676
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
677
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
678
+ COPY_PHASE_STRIP = NO;
679
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
680
+ ENABLE_TESTABILITY = YES;
681
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
682
+ GCC_C_LANGUAGE_STANDARD = gnu99;
683
+ GCC_DYNAMIC_NO_PIC = NO;
684
+ GCC_NO_COMMON_BLOCKS = YES;
685
+ GCC_OPTIMIZATION_LEVEL = 0;
686
+ GCC_PREPROCESSOR_DEFINITIONS = (
687
+ "DEBUG=1",
688
+ "$(inherited)",
689
+ );
690
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
691
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
692
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
693
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
694
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
695
+ GCC_WARN_UNUSED_FUNCTION = YES;
696
+ GCC_WARN_UNUSED_VARIABLE = YES;
697
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
698
+ LD_RUNPATH_SEARCH_PATHS = (
699
+ /usr/lib/swift,
700
+ "$(inherited)",
701
+ );
702
+ LIBRARY_SEARCH_PATHS = (
703
+ "\"$(SDKROOT)/usr/lib/swift\"",
704
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
705
+ "\"$(inherited)\"",
706
+ );
707
+ MTL_ENABLE_DEBUG_INFO = YES;
708
+ ONLY_ACTIVE_ARCH = YES;
709
+ OTHER_CPLUSPLUSFLAGS = (
710
+ "$(OTHER_CFLAGS)",
711
+ "-DFOLLY_NO_CONFIG",
712
+ "-DFOLLY_MOBILE=1",
713
+ "-DFOLLY_USE_LIBCPP=1",
714
+ "-DFOLLY_CFG_NO_COROUTINES=1",
715
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
716
+ );
717
+ OTHER_LDFLAGS = "$(inherited) ";
718
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
719
+ SDKROOT = iphoneos;
720
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
721
+ USE_HERMES = true;
722
+ };
723
+ name = Debug;
724
+ };
725
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
726
+ isa = XCBuildConfiguration;
727
+ buildSettings = {
728
+ ALWAYS_SEARCH_USER_PATHS = NO;
729
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
730
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
731
+ CLANG_CXX_LIBRARY = "libc++";
732
+ CLANG_ENABLE_MODULES = YES;
733
+ CLANG_ENABLE_OBJC_ARC = YES;
734
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
735
+ CLANG_WARN_BOOL_CONVERSION = YES;
736
+ CLANG_WARN_COMMA = YES;
737
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
738
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
739
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
740
+ CLANG_WARN_EMPTY_BODY = YES;
741
+ CLANG_WARN_ENUM_CONVERSION = YES;
742
+ CLANG_WARN_INFINITE_RECURSION = YES;
743
+ CLANG_WARN_INT_CONVERSION = YES;
744
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
745
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
746
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
747
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
748
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
749
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
750
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
751
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
752
+ CLANG_WARN_UNREACHABLE_CODE = YES;
753
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
754
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
755
+ COPY_PHASE_STRIP = YES;
756
+ ENABLE_NS_ASSERTIONS = NO;
757
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
758
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
759
+ GCC_C_LANGUAGE_STANDARD = gnu99;
760
+ GCC_NO_COMMON_BLOCKS = YES;
761
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
762
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
763
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
764
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
765
+ GCC_WARN_UNUSED_FUNCTION = YES;
766
+ GCC_WARN_UNUSED_VARIABLE = YES;
767
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
768
+ LD_RUNPATH_SEARCH_PATHS = (
769
+ /usr/lib/swift,
770
+ "$(inherited)",
771
+ );
772
+ LIBRARY_SEARCH_PATHS = (
773
+ "\"$(SDKROOT)/usr/lib/swift\"",
774
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
775
+ "\"$(inherited)\"",
776
+ );
777
+ MTL_ENABLE_DEBUG_INFO = NO;
778
+ OTHER_CPLUSPLUSFLAGS = (
779
+ "$(OTHER_CFLAGS)",
780
+ "-DFOLLY_NO_CONFIG",
781
+ "-DFOLLY_MOBILE=1",
782
+ "-DFOLLY_USE_LIBCPP=1",
783
+ "-DFOLLY_CFG_NO_COROUTINES=1",
784
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
785
+ );
786
+ OTHER_LDFLAGS = "$(inherited) ";
787
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
788
+ SDKROOT = iphoneos;
789
+ USE_HERMES = true;
790
+ VALIDATE_PRODUCT = YES;
791
+ };
792
+ name = Release;
793
+ };
794
+ /* End XCBuildConfiguration section */
795
+
796
+ /* Begin XCConfigurationList section */
797
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "reactnativemagicTests" */ = {
798
+ isa = XCConfigurationList;
799
+ buildConfigurations = (
800
+ 00E356F61AD99517003FC87E /* Debug */,
801
+ 00E356F71AD99517003FC87E /* Release */,
802
+ );
803
+ defaultConfigurationIsVisible = 0;
804
+ defaultConfigurationName = Release;
805
+ };
806
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativemagic" */ = {
807
+ isa = XCConfigurationList;
808
+ buildConfigurations = (
809
+ 13B07F941A680F5B00A75B9A /* Debug */,
810
+ 13B07F951A680F5B00A75B9A /* Release */,
811
+ );
812
+ defaultConfigurationIsVisible = 0;
813
+ defaultConfigurationName = Release;
814
+ };
815
+ 52BF1DB42D160E8100046137 /* Build configuration list for PBXNativeTarget "reactnativemagic-Development" */ = {
816
+ isa = XCConfigurationList;
817
+ buildConfigurations = (
818
+ 52BF1DB52D160E8100046137 /* Debug */,
819
+ 52BF1DB62D160E8100046137 /* Release */,
820
+ );
821
+ defaultConfigurationIsVisible = 0;
822
+ defaultConfigurationName = Release;
823
+ };
824
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactnativemagic" */ = {
825
+ isa = XCConfigurationList;
826
+ buildConfigurations = (
827
+ 83CBBA201A601CBA00E9B192 /* Debug */,
828
+ 83CBBA211A601CBA00E9B192 /* Release */,
829
+ );
830
+ defaultConfigurationIsVisible = 0;
831
+ defaultConfigurationName = Release;
832
+ };
833
+ /* End XCConfigurationList section */
834
+ };
835
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
836
+ }