react-obsidian 0.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 (216) hide show
  1. package/.buildkite/pipeline.yml +0 -0
  2. package/.eslintignore +1 -0
  3. package/.eslintrc.json +93 -0
  4. package/.nvmrc +1 -0
  5. package/LICENSE +7 -0
  6. package/README.md +160 -0
  7. package/babel.config.js +12 -0
  8. package/dist/src/GraphProperties.d.ts +6 -0
  9. package/dist/src/GraphProperties.d.ts.map +1 -0
  10. package/dist/src/GraphProperties.js +16 -0
  11. package/dist/src/GraphProperties.js.map +1 -0
  12. package/dist/src/Obsidian.d.ts +9 -0
  13. package/dist/src/Obsidian.d.ts.map +1 -0
  14. package/dist/src/Obsidian.js +22 -0
  15. package/dist/src/Obsidian.js.map +1 -0
  16. package/dist/src/ProvidedPropertiesStore.d.ts +10 -0
  17. package/dist/src/ProvidedPropertiesStore.d.ts.map +1 -0
  18. package/dist/src/ProvidedPropertiesStore.js +27 -0
  19. package/dist/src/ProvidedPropertiesStore.js.map +1 -0
  20. package/dist/src/Provides.d.ts +9 -0
  21. package/dist/src/Provides.d.ts.map +1 -0
  22. package/dist/src/Provides.js +15 -0
  23. package/dist/src/Provides.js.map +1 -0
  24. package/dist/src/ReferenceCounter.d.ts +8 -0
  25. package/dist/src/ReferenceCounter.d.ts.map +1 -0
  26. package/dist/src/ReferenceCounter.js +25 -0
  27. package/dist/src/ReferenceCounter.js.map +1 -0
  28. package/dist/src/ScopedValuesRegistry.d.ts +11 -0
  29. package/dist/src/ScopedValuesRegistry.d.ts.map +1 -0
  30. package/dist/src/ScopedValuesRegistry.js +25 -0
  31. package/dist/src/ScopedValuesRegistry.js.map +1 -0
  32. package/dist/src/decorators/Graph.d.ts +10 -0
  33. package/dist/src/decorators/Graph.d.ts.map +1 -0
  34. package/dist/src/decorators/Graph.js +17 -0
  35. package/dist/src/decorators/Graph.js.map +1 -0
  36. package/dist/src/decorators/injectClass.d.ts +7 -0
  37. package/dist/src/decorators/injectClass.d.ts.map +1 -0
  38. package/dist/src/decorators/injectClass.js +34 -0
  39. package/dist/src/decorators/injectClass.js.map +1 -0
  40. package/dist/src/graph/Graph.d.ts +6 -0
  41. package/dist/src/graph/Graph.d.ts.map +1 -0
  42. package/dist/src/graph/Graph.js +3 -0
  43. package/dist/src/graph/Graph.js.map +1 -0
  44. package/dist/src/graph/ObjectGraph.d.ts +11 -0
  45. package/dist/src/graph/ObjectGraph.d.ts.map +1 -0
  46. package/dist/src/graph/ObjectGraph.js +26 -0
  47. package/dist/src/graph/ObjectGraph.js.map +1 -0
  48. package/dist/src/graph/PropertyRetriever.d.ts +8 -0
  49. package/dist/src/graph/PropertyRetriever.d.ts.map +1 -0
  50. package/dist/src/graph/PropertyRetriever.js +40 -0
  51. package/dist/src/graph/PropertyRetriever.js.map +1 -0
  52. package/dist/src/graph/PropertyRetrieverDelegate.d.ts +5 -0
  53. package/dist/src/graph/PropertyRetrieverDelegate.d.ts.map +1 -0
  54. package/dist/src/graph/PropertyRetrieverDelegate.js +3 -0
  55. package/dist/src/graph/PropertyRetrieverDelegate.js.map +1 -0
  56. package/dist/src/graph/registry/DefaultGraphResolver.d.ts +7 -0
  57. package/dist/src/graph/registry/DefaultGraphResolver.d.ts.map +1 -0
  58. package/dist/src/graph/registry/DefaultGraphResolver.js +30 -0
  59. package/dist/src/graph/registry/DefaultGraphResolver.js.map +1 -0
  60. package/dist/src/graph/registry/GraphMiddleware.d.ts +12 -0
  61. package/dist/src/graph/registry/GraphMiddleware.d.ts.map +1 -0
  62. package/dist/src/graph/registry/GraphMiddleware.js +25 -0
  63. package/dist/src/graph/registry/GraphMiddleware.js.map +1 -0
  64. package/dist/src/graph/registry/GraphMiddlewareChain.d.ts +12 -0
  65. package/dist/src/graph/registry/GraphMiddlewareChain.d.ts.map +1 -0
  66. package/dist/src/graph/registry/GraphMiddlewareChain.js +30 -0
  67. package/dist/src/graph/registry/GraphMiddlewareChain.js.map +1 -0
  68. package/dist/src/graph/registry/GraphRegistry.d.ts +22 -0
  69. package/dist/src/graph/registry/GraphRegistry.d.ts.map +1 -0
  70. package/dist/src/graph/registry/GraphRegistry.js +65 -0
  71. package/dist/src/graph/registry/GraphRegistry.js.map +1 -0
  72. package/dist/src/index.d.ts +17 -0
  73. package/dist/src/index.d.ts.map +1 -0
  74. package/dist/src/index.js +24 -0
  75. package/dist/src/index.js.map +1 -0
  76. package/dist/src/injectHook.d.ts +5 -0
  77. package/dist/src/injectHook.d.ts.map +1 -0
  78. package/dist/src/injectHook.js +30 -0
  79. package/dist/src/injectHook.js.map +1 -0
  80. package/dist/src/injectors/components/ComponentInjector.d.ts +9 -0
  81. package/dist/src/injectors/components/ComponentInjector.d.ts.map +1 -0
  82. package/dist/src/injectors/components/ComponentInjector.js +48 -0
  83. package/dist/src/injectors/components/ComponentInjector.js.map +1 -0
  84. package/dist/src/injectors/components/PropsInjector.d.ts +7 -0
  85. package/dist/src/injectors/components/PropsInjector.d.ts.map +1 -0
  86. package/dist/src/injectors/components/PropsInjector.js +19 -0
  87. package/dist/src/injectors/components/PropsInjector.js.map +1 -0
  88. package/dist/src/injectors/components/useGraph.d.ts +5 -0
  89. package/dist/src/injectors/components/useGraph.d.ts.map +1 -0
  90. package/dist/src/injectors/components/useGraph.js +17 -0
  91. package/dist/src/injectors/components/useGraph.js.map +1 -0
  92. package/dist/test/integration/fixtures/InjectedComponent.d.ts +8 -0
  93. package/dist/test/integration/fixtures/InjectedComponent.d.ts.map +1 -0
  94. package/dist/test/integration/fixtures/InjectedComponent.js +14 -0
  95. package/dist/test/integration/fixtures/InjectedComponent.js.map +1 -0
  96. package/dist/test/integration/fixtures/MainGraph.d.ts +6 -0
  97. package/dist/test/integration/fixtures/MainGraph.d.ts.map +1 -0
  98. package/dist/test/integration/fixtures/MainGraph.js +53 -0
  99. package/dist/test/integration/fixtures/MainGraph.js.map +1 -0
  100. package/dist/test/integration/fixtures/StringProvider.d.ts +5 -0
  101. package/dist/test/integration/fixtures/StringProvider.d.ts.map +1 -0
  102. package/dist/test/integration/fixtures/StringProvider.js +15 -0
  103. package/dist/test/integration/fixtures/StringProvider.js.map +1 -0
  104. package/dist/test/integration/fixtures/Subgraph.d.ts +8 -0
  105. package/dist/test/integration/fixtures/Subgraph.d.ts.map +1 -0
  106. package/dist/test/integration/fixtures/Subgraph.js +71 -0
  107. package/dist/test/integration/fixtures/Subgraph.js.map +1 -0
  108. package/dist/test/integration/fixtures/ThrowingMainGraph.d.ts +5 -0
  109. package/dist/test/integration/fixtures/ThrowingMainGraph.d.ts.map +1 -0
  110. package/dist/test/integration/fixtures/ThrowingMainGraph.js +52 -0
  111. package/dist/test/integration/fixtures/ThrowingMainGraph.js.map +1 -0
  112. package/dist/test/integration/fixtures/injectedValues.d.ts +6 -0
  113. package/dist/test/integration/fixtures/injectedValues.d.ts.map +1 -0
  114. package/dist/test/integration/fixtures/injectedValues.js +7 -0
  115. package/dist/test/integration/fixtures/injectedValues.js.map +1 -0
  116. package/dist/testkit/index.d.ts +8 -0
  117. package/dist/testkit/index.d.ts.map +1 -0
  118. package/dist/testkit/index.js +46 -0
  119. package/dist/testkit/index.js.map +1 -0
  120. package/dist/transformers/babel-plugin-obsidian-provide/helpers/index.d.ts +9 -0
  121. package/dist/transformers/babel-plugin-obsidian-provide/helpers/index.d.ts.map +1 -0
  122. package/dist/transformers/babel-plugin-obsidian-provide/helpers/index.js +54 -0
  123. package/dist/transformers/babel-plugin-obsidian-provide/helpers/index.js.map +1 -0
  124. package/dist/transformers/babel-plugin-obsidian-provide/index.d.ts +3 -0
  125. package/dist/transformers/babel-plugin-obsidian-provide/index.d.ts.map +1 -0
  126. package/dist/transformers/babel-plugin-obsidian-provide/index.js +35 -0
  127. package/dist/transformers/babel-plugin-obsidian-provide/index.js.map +1 -0
  128. package/example/.buckconfig +6 -0
  129. package/example/.editorconfig +3 -0
  130. package/example/.eslintrc.js +4 -0
  131. package/example/.flowconfig +65 -0
  132. package/example/.gitattributes +3 -0
  133. package/example/.prettierrc.js +7 -0
  134. package/example/.watchmanconfig +1 -0
  135. package/example/App.tsx +31 -0
  136. package/example/MyInjectedComponent.tsx +28 -0
  137. package/example/__tests__/App-test.js +14 -0
  138. package/example/android/app/BUCK +55 -0
  139. package/example/android/app/build.gradle +227 -0
  140. package/example/android/app/build_defs.bzl +19 -0
  141. package/example/android/app/debug.keystore +0 -0
  142. package/example/android/app/proguard-rules.pro +10 -0
  143. package/example/android/app/src/debug/AndroidManifest.xml +13 -0
  144. package/example/android/app/src/debug/java/com/example/ReactNativeFlipper.java +72 -0
  145. package/example/android/app/src/main/AndroidManifest.xml +25 -0
  146. package/example/android/app/src/main/java/com/example/MainActivity.java +15 -0
  147. package/example/android/app/src/main/java/com/example/MainApplication.java +80 -0
  148. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  149. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  150. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  151. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  152. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  153. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  154. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  155. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  156. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  157. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  158. package/example/android/app/src/main/res/values/strings.xml +3 -0
  159. package/example/android/app/src/main/res/values/styles.xml +8 -0
  160. package/example/android/build.gradle +38 -0
  161. package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  162. package/example/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  163. package/example/android/gradle.properties +28 -0
  164. package/example/android/gradlew +185 -0
  165. package/example/android/gradlew.bat +89 -0
  166. package/example/android/settings.gradle +3 -0
  167. package/example/app.json +4 -0
  168. package/example/babel.config.js +8 -0
  169. package/example/index.js +9 -0
  170. package/example/ios/Podfile +30 -0
  171. package/example/ios/Podfile.lock +526 -0
  172. package/example/ios/example/AppDelegate.h +8 -0
  173. package/example/ios/example/AppDelegate.m +62 -0
  174. package/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
  175. package/example/ios/example/Images.xcassets/Contents.json +6 -0
  176. package/example/ios/example/Info.plist +55 -0
  177. package/example/ios/example/LaunchScreen.storyboard +47 -0
  178. package/example/ios/example/main.m +9 -0
  179. package/example/ios/example.xcodeproj/project.pbxproj +689 -0
  180. package/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme +88 -0
  181. package/example/ios/example.xcworkspace/contents.xcworkspacedata +10 -0
  182. package/example/ios/exampleTests/Info.plist +24 -0
  183. package/example/ios/exampleTests/exampleTests.m +65 -0
  184. package/example/metro.config.js +44 -0
  185. package/example/package.json +35 -0
  186. package/example/tsconfig.json +45 -0
  187. package/jest.config.js +12 -0
  188. package/package.json +79 -0
  189. package/src/@types/obsidian.d.ts +19 -0
  190. package/src/GraphProperties.ts +11 -0
  191. package/src/Obsidian.ts +18 -0
  192. package/src/ProvidedPropertiesStore.ts +22 -0
  193. package/src/Provides.ts +16 -0
  194. package/src/ReferenceCounter.ts +20 -0
  195. package/src/ScopedValuesRegistry.ts +26 -0
  196. package/src/decorators/Graph.ts +20 -0
  197. package/src/decorators/injectClass.ts +28 -0
  198. package/src/graph/Graph.ts +7 -0
  199. package/src/graph/ObjectGraph.ts +19 -0
  200. package/src/graph/PropertyRetriever.ts +36 -0
  201. package/src/graph/PropertyRetrieverDelegate.ts +5 -0
  202. package/src/graph/registry/DefaultGraphResolver.ts +9 -0
  203. package/src/graph/registry/GraphMiddleware.ts +24 -0
  204. package/src/graph/registry/GraphMiddlewareChain.ts +31 -0
  205. package/src/graph/registry/GraphRegistry.ts +70 -0
  206. package/src/index.ts +23 -0
  207. package/src/injectHook.ts +26 -0
  208. package/src/injectors/components/ComponentInjector.tsx +29 -0
  209. package/src/injectors/components/PropsInjector.ts +14 -0
  210. package/src/injectors/components/useGraph.ts +14 -0
  211. package/testkit/index.ts +25 -0
  212. package/transformers/babel-plugin-obsidian-provide/helpers/index.ts +59 -0
  213. package/transformers/babel-plugin-obsidian-provide/index.ts +44 -0
  214. package/tsconfig.base.json +43 -0
  215. package/tsconfig.json +3 -0
  216. package/tsconfig.prod.json +7 -0
@@ -0,0 +1,689 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* exampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* exampleTests.m */; };
11
+ 0F88FDF345D2D90DC094E021 /* libPods-example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 30305397071EB6F99D894756 /* libPods-example.a */; };
12
+ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
13
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
14
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
15
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
16
+ E81D0D083FA572A3A5F6775A /* libPods-example-exampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 81D680F378B1402B399E8611 /* libPods-example-exampleTests.a */; };
17
+ /* End PBXBuildFile section */
18
+
19
+ /* Begin PBXContainerItemProxy section */
20
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
21
+ isa = PBXContainerItemProxy;
22
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
23
+ proxyType = 1;
24
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
25
+ remoteInfo = example;
26
+ };
27
+ /* End PBXContainerItemProxy section */
28
+
29
+ /* Begin PBXFileReference section */
30
+ 00E356EE1AD99517003FC87E /* exampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = exampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
31
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
32
+ 00E356F21AD99517003FC87E /* exampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = exampleTests.m; sourceTree = "<group>"; };
33
+ 13B07F961A680F5B00A75B9A /* example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = example.app; sourceTree = BUILT_PRODUCTS_DIR; };
34
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = example/AppDelegate.h; sourceTree = "<group>"; };
35
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = example/AppDelegate.m; sourceTree = "<group>"; };
36
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = example/Images.xcassets; sourceTree = "<group>"; };
37
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = example/Info.plist; sourceTree = "<group>"; };
38
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = example/main.m; sourceTree = "<group>"; };
39
+ 30305397071EB6F99D894756 /* libPods-example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
40
+ 53E0330B99A17AC333DAC981 /* 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>"; };
41
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = example/LaunchScreen.storyboard; sourceTree = "<group>"; };
42
+ 81D680F378B1402B399E8611 /* libPods-example-exampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example-exampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
43
+ A1FFF8A253DB9BE06E72BF2F /* 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>"; };
44
+ CA0489901D6EF8D618F343A3 /* Pods-example-exampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example-exampleTests.debug.xcconfig"; path = "Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests.debug.xcconfig"; sourceTree = "<group>"; };
45
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
46
+ FC50C15D98C5915FA09B46DD /* Pods-example-exampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-example-exampleTests.release.xcconfig"; path = "Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests.release.xcconfig"; sourceTree = "<group>"; };
47
+ /* End PBXFileReference section */
48
+
49
+ /* Begin PBXFrameworksBuildPhase section */
50
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
51
+ isa = PBXFrameworksBuildPhase;
52
+ buildActionMask = 2147483647;
53
+ files = (
54
+ E81D0D083FA572A3A5F6775A /* libPods-example-exampleTests.a in Frameworks */,
55
+ );
56
+ runOnlyForDeploymentPostprocessing = 0;
57
+ };
58
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
59
+ isa = PBXFrameworksBuildPhase;
60
+ buildActionMask = 2147483647;
61
+ files = (
62
+ 0F88FDF345D2D90DC094E021 /* libPods-example.a in Frameworks */,
63
+ );
64
+ runOnlyForDeploymentPostprocessing = 0;
65
+ };
66
+ /* End PBXFrameworksBuildPhase section */
67
+
68
+ /* Begin PBXGroup section */
69
+ 00E356EF1AD99517003FC87E /* exampleTests */ = {
70
+ isa = PBXGroup;
71
+ children = (
72
+ 00E356F21AD99517003FC87E /* exampleTests.m */,
73
+ 00E356F01AD99517003FC87E /* Supporting Files */,
74
+ );
75
+ path = exampleTests;
76
+ sourceTree = "<group>";
77
+ };
78
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
79
+ isa = PBXGroup;
80
+ children = (
81
+ 00E356F11AD99517003FC87E /* Info.plist */,
82
+ );
83
+ name = "Supporting Files";
84
+ sourceTree = "<group>";
85
+ };
86
+ 0C5A6B1CCAA0778C370492DB /* Pods */ = {
87
+ isa = PBXGroup;
88
+ children = (
89
+ 53E0330B99A17AC333DAC981 /* Pods-example.debug.xcconfig */,
90
+ A1FFF8A253DB9BE06E72BF2F /* Pods-example.release.xcconfig */,
91
+ CA0489901D6EF8D618F343A3 /* Pods-example-exampleTests.debug.xcconfig */,
92
+ FC50C15D98C5915FA09B46DD /* Pods-example-exampleTests.release.xcconfig */,
93
+ );
94
+ name = Pods;
95
+ path = Pods;
96
+ sourceTree = "<group>";
97
+ };
98
+ 13B07FAE1A68108700A75B9A /* example */ = {
99
+ isa = PBXGroup;
100
+ children = (
101
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
102
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */,
103
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
104
+ 13B07FB61A68108700A75B9A /* Info.plist */,
105
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
106
+ 13B07FB71A68108700A75B9A /* main.m */,
107
+ );
108
+ name = example;
109
+ sourceTree = "<group>";
110
+ };
111
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
112
+ isa = PBXGroup;
113
+ children = (
114
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
115
+ 30305397071EB6F99D894756 /* libPods-example.a */,
116
+ 81D680F378B1402B399E8611 /* libPods-example-exampleTests.a */,
117
+ );
118
+ name = Frameworks;
119
+ sourceTree = "<group>";
120
+ };
121
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
122
+ isa = PBXGroup;
123
+ children = (
124
+ );
125
+ name = Libraries;
126
+ sourceTree = "<group>";
127
+ };
128
+ 83CBB9F61A601CBA00E9B192 = {
129
+ isa = PBXGroup;
130
+ children = (
131
+ 13B07FAE1A68108700A75B9A /* example */,
132
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
133
+ 00E356EF1AD99517003FC87E /* exampleTests */,
134
+ 83CBBA001A601CBA00E9B192 /* Products */,
135
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
136
+ 0C5A6B1CCAA0778C370492DB /* Pods */,
137
+ );
138
+ indentWidth = 2;
139
+ sourceTree = "<group>";
140
+ tabWidth = 2;
141
+ usesTabs = 0;
142
+ };
143
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
144
+ isa = PBXGroup;
145
+ children = (
146
+ 13B07F961A680F5B00A75B9A /* example.app */,
147
+ 00E356EE1AD99517003FC87E /* exampleTests.xctest */,
148
+ );
149
+ name = Products;
150
+ sourceTree = "<group>";
151
+ };
152
+ /* End PBXGroup section */
153
+
154
+ /* Begin PBXNativeTarget section */
155
+ 00E356ED1AD99517003FC87E /* exampleTests */ = {
156
+ isa = PBXNativeTarget;
157
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */;
158
+ buildPhases = (
159
+ 57CB199FB22D8D0B4C70F781 /* [CP] Check Pods Manifest.lock */,
160
+ 00E356EA1AD99517003FC87E /* Sources */,
161
+ 00E356EB1AD99517003FC87E /* Frameworks */,
162
+ 00E356EC1AD99517003FC87E /* Resources */,
163
+ 1EB768B85FE1B324B6B664B2 /* [CP] Embed Pods Frameworks */,
164
+ 9581B69734049B0E3C5F7C56 /* [CP] Copy Pods Resources */,
165
+ );
166
+ buildRules = (
167
+ );
168
+ dependencies = (
169
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
170
+ );
171
+ name = exampleTests;
172
+ productName = exampleTests;
173
+ productReference = 00E356EE1AD99517003FC87E /* exampleTests.xctest */;
174
+ productType = "com.apple.product-type.bundle.unit-test";
175
+ };
176
+ 13B07F861A680F5B00A75B9A /* example */ = {
177
+ isa = PBXNativeTarget;
178
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */;
179
+ buildPhases = (
180
+ 3D4F8910DFA9E5368C0E2773 /* [CP] Check Pods Manifest.lock */,
181
+ FD10A7F022414F080027D42C /* Start Packager */,
182
+ 13B07F871A680F5B00A75B9A /* Sources */,
183
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
184
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
185
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
186
+ 7187B7872F37FBFC8B1F613C /* [CP] Embed Pods Frameworks */,
187
+ 313E4B042816DD69FB288F1F /* [CP] Copy Pods Resources */,
188
+ );
189
+ buildRules = (
190
+ );
191
+ dependencies = (
192
+ );
193
+ name = example;
194
+ productName = example;
195
+ productReference = 13B07F961A680F5B00A75B9A /* example.app */;
196
+ productType = "com.apple.product-type.application";
197
+ };
198
+ /* End PBXNativeTarget section */
199
+
200
+ /* Begin PBXProject section */
201
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
202
+ isa = PBXProject;
203
+ attributes = {
204
+ LastUpgradeCheck = 1210;
205
+ TargetAttributes = {
206
+ 00E356ED1AD99517003FC87E = {
207
+ CreatedOnToolsVersion = 6.2;
208
+ TestTargetID = 13B07F861A680F5B00A75B9A;
209
+ };
210
+ 13B07F861A680F5B00A75B9A = {
211
+ LastSwiftMigration = 1120;
212
+ };
213
+ };
214
+ };
215
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */;
216
+ compatibilityVersion = "Xcode 12.0";
217
+ developmentRegion = en;
218
+ hasScannedForEncodings = 0;
219
+ knownRegions = (
220
+ en,
221
+ Base,
222
+ );
223
+ mainGroup = 83CBB9F61A601CBA00E9B192;
224
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
225
+ projectDirPath = "";
226
+ projectRoot = "";
227
+ targets = (
228
+ 13B07F861A680F5B00A75B9A /* example */,
229
+ 00E356ED1AD99517003FC87E /* exampleTests */,
230
+ );
231
+ };
232
+ /* End PBXProject section */
233
+
234
+ /* Begin PBXResourcesBuildPhase section */
235
+ 00E356EC1AD99517003FC87E /* Resources */ = {
236
+ isa = PBXResourcesBuildPhase;
237
+ buildActionMask = 2147483647;
238
+ files = (
239
+ );
240
+ runOnlyForDeploymentPostprocessing = 0;
241
+ };
242
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
243
+ isa = PBXResourcesBuildPhase;
244
+ buildActionMask = 2147483647;
245
+ files = (
246
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
247
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
248
+ );
249
+ runOnlyForDeploymentPostprocessing = 0;
250
+ };
251
+ /* End PBXResourcesBuildPhase section */
252
+
253
+ /* Begin PBXShellScriptBuildPhase section */
254
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
255
+ isa = PBXShellScriptBuildPhase;
256
+ buildActionMask = 2147483647;
257
+ files = (
258
+ );
259
+ inputPaths = (
260
+ );
261
+ name = "Bundle React Native code and images";
262
+ outputPaths = (
263
+ );
264
+ runOnlyForDeploymentPostprocessing = 0;
265
+ shellPath = /bin/sh;
266
+ shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
267
+ };
268
+ 1EB768B85FE1B324B6B664B2 /* [CP] Embed Pods Frameworks */ = {
269
+ isa = PBXShellScriptBuildPhase;
270
+ buildActionMask = 2147483647;
271
+ files = (
272
+ );
273
+ inputFileListPaths = (
274
+ "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
275
+ );
276
+ name = "[CP] Embed Pods Frameworks";
277
+ outputFileListPaths = (
278
+ "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
279
+ );
280
+ runOnlyForDeploymentPostprocessing = 0;
281
+ shellPath = /bin/sh;
282
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks.sh\"\n";
283
+ showEnvVarsInLog = 0;
284
+ };
285
+ 313E4B042816DD69FB288F1F /* [CP] Copy Pods Resources */ = {
286
+ isa = PBXShellScriptBuildPhase;
287
+ buildActionMask = 2147483647;
288
+ files = (
289
+ );
290
+ inputFileListPaths = (
291
+ "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-input-files.xcfilelist",
292
+ );
293
+ name = "[CP] Copy Pods Resources";
294
+ outputFileListPaths = (
295
+ "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-output-files.xcfilelist",
296
+ );
297
+ runOnlyForDeploymentPostprocessing = 0;
298
+ shellPath = /bin/sh;
299
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources.sh\"\n";
300
+ showEnvVarsInLog = 0;
301
+ };
302
+ 3D4F8910DFA9E5368C0E2773 /* [CP] Check Pods Manifest.lock */ = {
303
+ isa = PBXShellScriptBuildPhase;
304
+ buildActionMask = 2147483647;
305
+ files = (
306
+ );
307
+ inputFileListPaths = (
308
+ );
309
+ inputPaths = (
310
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
311
+ "${PODS_ROOT}/Manifest.lock",
312
+ );
313
+ name = "[CP] Check Pods Manifest.lock";
314
+ outputFileListPaths = (
315
+ );
316
+ outputPaths = (
317
+ "$(DERIVED_FILE_DIR)/Pods-example-checkManifestLockResult.txt",
318
+ );
319
+ runOnlyForDeploymentPostprocessing = 0;
320
+ shellPath = /bin/sh;
321
+ 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";
322
+ showEnvVarsInLog = 0;
323
+ };
324
+ 57CB199FB22D8D0B4C70F781 /* [CP] Check Pods Manifest.lock */ = {
325
+ isa = PBXShellScriptBuildPhase;
326
+ buildActionMask = 2147483647;
327
+ files = (
328
+ );
329
+ inputFileListPaths = (
330
+ );
331
+ inputPaths = (
332
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
333
+ "${PODS_ROOT}/Manifest.lock",
334
+ );
335
+ name = "[CP] Check Pods Manifest.lock";
336
+ outputFileListPaths = (
337
+ );
338
+ outputPaths = (
339
+ "$(DERIVED_FILE_DIR)/Pods-example-exampleTests-checkManifestLockResult.txt",
340
+ );
341
+ runOnlyForDeploymentPostprocessing = 0;
342
+ shellPath = /bin/sh;
343
+ 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";
344
+ showEnvVarsInLog = 0;
345
+ };
346
+ 7187B7872F37FBFC8B1F613C /* [CP] Embed Pods Frameworks */ = {
347
+ isa = PBXShellScriptBuildPhase;
348
+ buildActionMask = 2147483647;
349
+ files = (
350
+ );
351
+ inputFileListPaths = (
352
+ "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-input-files.xcfilelist",
353
+ );
354
+ name = "[CP] Embed Pods Frameworks";
355
+ outputFileListPaths = (
356
+ "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-output-files.xcfilelist",
357
+ );
358
+ runOnlyForDeploymentPostprocessing = 0;
359
+ shellPath = /bin/sh;
360
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks.sh\"\n";
361
+ showEnvVarsInLog = 0;
362
+ };
363
+ 9581B69734049B0E3C5F7C56 /* [CP] Copy Pods Resources */ = {
364
+ isa = PBXShellScriptBuildPhase;
365
+ buildActionMask = 2147483647;
366
+ files = (
367
+ );
368
+ inputFileListPaths = (
369
+ "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
370
+ );
371
+ name = "[CP] Copy Pods Resources";
372
+ outputFileListPaths = (
373
+ "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
374
+ );
375
+ runOnlyForDeploymentPostprocessing = 0;
376
+ shellPath = /bin/sh;
377
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources.sh\"\n";
378
+ showEnvVarsInLog = 0;
379
+ };
380
+ FD10A7F022414F080027D42C /* Start Packager */ = {
381
+ isa = PBXShellScriptBuildPhase;
382
+ buildActionMask = 2147483647;
383
+ files = (
384
+ );
385
+ inputFileListPaths = (
386
+ );
387
+ inputPaths = (
388
+ );
389
+ name = "Start Packager";
390
+ outputFileListPaths = (
391
+ );
392
+ outputPaths = (
393
+ );
394
+ runOnlyForDeploymentPostprocessing = 0;
395
+ shellPath = /bin/sh;
396
+ shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
397
+ showEnvVarsInLog = 0;
398
+ };
399
+ /* End PBXShellScriptBuildPhase section */
400
+
401
+ /* Begin PBXSourcesBuildPhase section */
402
+ 00E356EA1AD99517003FC87E /* Sources */ = {
403
+ isa = PBXSourcesBuildPhase;
404
+ buildActionMask = 2147483647;
405
+ files = (
406
+ 00E356F31AD99517003FC87E /* exampleTests.m in Sources */,
407
+ );
408
+ runOnlyForDeploymentPostprocessing = 0;
409
+ };
410
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
411
+ isa = PBXSourcesBuildPhase;
412
+ buildActionMask = 2147483647;
413
+ files = (
414
+ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
415
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
416
+ );
417
+ runOnlyForDeploymentPostprocessing = 0;
418
+ };
419
+ /* End PBXSourcesBuildPhase section */
420
+
421
+ /* Begin PBXTargetDependency section */
422
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
423
+ isa = PBXTargetDependency;
424
+ target = 13B07F861A680F5B00A75B9A /* example */;
425
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
426
+ };
427
+ /* End PBXTargetDependency section */
428
+
429
+ /* Begin XCBuildConfiguration section */
430
+ 00E356F61AD99517003FC87E /* Debug */ = {
431
+ isa = XCBuildConfiguration;
432
+ baseConfigurationReference = CA0489901D6EF8D618F343A3 /* Pods-example-exampleTests.debug.xcconfig */;
433
+ buildSettings = {
434
+ BUNDLE_LOADER = "$(TEST_HOST)";
435
+ GCC_PREPROCESSOR_DEFINITIONS = (
436
+ "DEBUG=1",
437
+ "$(inherited)",
438
+ );
439
+ INFOPLIST_FILE = exampleTests/Info.plist;
440
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
441
+ LD_RUNPATH_SEARCH_PATHS = (
442
+ "$(inherited)",
443
+ "@executable_path/Frameworks",
444
+ "@loader_path/Frameworks",
445
+ );
446
+ OTHER_LDFLAGS = (
447
+ "-ObjC",
448
+ "-lc++",
449
+ "$(inherited)",
450
+ );
451
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
452
+ PRODUCT_NAME = "$(TARGET_NAME)";
453
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
454
+ };
455
+ name = Debug;
456
+ };
457
+ 00E356F71AD99517003FC87E /* Release */ = {
458
+ isa = XCBuildConfiguration;
459
+ baseConfigurationReference = FC50C15D98C5915FA09B46DD /* Pods-example-exampleTests.release.xcconfig */;
460
+ buildSettings = {
461
+ BUNDLE_LOADER = "$(TEST_HOST)";
462
+ COPY_PHASE_STRIP = NO;
463
+ INFOPLIST_FILE = exampleTests/Info.plist;
464
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
465
+ LD_RUNPATH_SEARCH_PATHS = (
466
+ "$(inherited)",
467
+ "@executable_path/Frameworks",
468
+ "@loader_path/Frameworks",
469
+ );
470
+ OTHER_LDFLAGS = (
471
+ "-ObjC",
472
+ "-lc++",
473
+ "$(inherited)",
474
+ );
475
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
476
+ PRODUCT_NAME = "$(TARGET_NAME)";
477
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
478
+ };
479
+ name = Release;
480
+ };
481
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
482
+ isa = XCBuildConfiguration;
483
+ baseConfigurationReference = 53E0330B99A17AC333DAC981 /* Pods-example.debug.xcconfig */;
484
+ buildSettings = {
485
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
486
+ CLANG_ENABLE_MODULES = YES;
487
+ CURRENT_PROJECT_VERSION = 1;
488
+ ENABLE_BITCODE = NO;
489
+ INFOPLIST_FILE = example/Info.plist;
490
+ LD_RUNPATH_SEARCH_PATHS = (
491
+ "$(inherited)",
492
+ "@executable_path/Frameworks",
493
+ );
494
+ OTHER_LDFLAGS = (
495
+ "$(inherited)",
496
+ "-ObjC",
497
+ "-lc++",
498
+ );
499
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
500
+ PRODUCT_NAME = example;
501
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
502
+ SWIFT_VERSION = 5.0;
503
+ VERSIONING_SYSTEM = "apple-generic";
504
+ };
505
+ name = Debug;
506
+ };
507
+ 13B07F951A680F5B00A75B9A /* Release */ = {
508
+ isa = XCBuildConfiguration;
509
+ baseConfigurationReference = A1FFF8A253DB9BE06E72BF2F /* Pods-example.release.xcconfig */;
510
+ buildSettings = {
511
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
512
+ CLANG_ENABLE_MODULES = YES;
513
+ CURRENT_PROJECT_VERSION = 1;
514
+ INFOPLIST_FILE = example/Info.plist;
515
+ LD_RUNPATH_SEARCH_PATHS = (
516
+ "$(inherited)",
517
+ "@executable_path/Frameworks",
518
+ );
519
+ OTHER_LDFLAGS = (
520
+ "$(inherited)",
521
+ "-ObjC",
522
+ "-lc++",
523
+ );
524
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
525
+ PRODUCT_NAME = example;
526
+ SWIFT_VERSION = 5.0;
527
+ VERSIONING_SYSTEM = "apple-generic";
528
+ };
529
+ name = Release;
530
+ };
531
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
532
+ isa = XCBuildConfiguration;
533
+ buildSettings = {
534
+ ALWAYS_SEARCH_USER_PATHS = NO;
535
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
536
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
537
+ CLANG_CXX_LIBRARY = "libc++";
538
+ CLANG_ENABLE_MODULES = YES;
539
+ CLANG_ENABLE_OBJC_ARC = YES;
540
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
541
+ CLANG_WARN_BOOL_CONVERSION = YES;
542
+ CLANG_WARN_COMMA = YES;
543
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
544
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
545
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
546
+ CLANG_WARN_EMPTY_BODY = YES;
547
+ CLANG_WARN_ENUM_CONVERSION = YES;
548
+ CLANG_WARN_INFINITE_RECURSION = YES;
549
+ CLANG_WARN_INT_CONVERSION = YES;
550
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
551
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
552
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
553
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
554
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
555
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
556
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
557
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
558
+ CLANG_WARN_UNREACHABLE_CODE = YES;
559
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
560
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
561
+ COPY_PHASE_STRIP = NO;
562
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
563
+ ENABLE_TESTABILITY = YES;
564
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
565
+ GCC_C_LANGUAGE_STANDARD = gnu99;
566
+ GCC_DYNAMIC_NO_PIC = NO;
567
+ GCC_NO_COMMON_BLOCKS = YES;
568
+ GCC_OPTIMIZATION_LEVEL = 0;
569
+ GCC_PREPROCESSOR_DEFINITIONS = (
570
+ "DEBUG=1",
571
+ "$(inherited)",
572
+ );
573
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
574
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
575
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
576
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
577
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
578
+ GCC_WARN_UNUSED_FUNCTION = YES;
579
+ GCC_WARN_UNUSED_VARIABLE = YES;
580
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
581
+ LD_RUNPATH_SEARCH_PATHS = (
582
+ /usr/lib/swift,
583
+ "$(inherited)",
584
+ );
585
+ LIBRARY_SEARCH_PATHS = (
586
+ "\"$(SDKROOT)/usr/lib/swift\"",
587
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
588
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
589
+ "\"$(inherited)\"",
590
+ );
591
+ MTL_ENABLE_DEBUG_INFO = YES;
592
+ ONLY_ACTIVE_ARCH = YES;
593
+ SDKROOT = iphoneos;
594
+ };
595
+ name = Debug;
596
+ };
597
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
598
+ isa = XCBuildConfiguration;
599
+ buildSettings = {
600
+ ALWAYS_SEARCH_USER_PATHS = NO;
601
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
602
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
603
+ CLANG_CXX_LIBRARY = "libc++";
604
+ CLANG_ENABLE_MODULES = YES;
605
+ CLANG_ENABLE_OBJC_ARC = YES;
606
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
607
+ CLANG_WARN_BOOL_CONVERSION = YES;
608
+ CLANG_WARN_COMMA = YES;
609
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
610
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
611
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
612
+ CLANG_WARN_EMPTY_BODY = YES;
613
+ CLANG_WARN_ENUM_CONVERSION = YES;
614
+ CLANG_WARN_INFINITE_RECURSION = YES;
615
+ CLANG_WARN_INT_CONVERSION = YES;
616
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
617
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
618
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
619
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
620
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
621
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
622
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
623
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
624
+ CLANG_WARN_UNREACHABLE_CODE = YES;
625
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
626
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
627
+ COPY_PHASE_STRIP = YES;
628
+ ENABLE_NS_ASSERTIONS = NO;
629
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
630
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 ";
631
+ GCC_C_LANGUAGE_STANDARD = gnu99;
632
+ GCC_NO_COMMON_BLOCKS = YES;
633
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
634
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
635
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
636
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
637
+ GCC_WARN_UNUSED_FUNCTION = YES;
638
+ GCC_WARN_UNUSED_VARIABLE = YES;
639
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
640
+ LD_RUNPATH_SEARCH_PATHS = (
641
+ /usr/lib/swift,
642
+ "$(inherited)",
643
+ );
644
+ LIBRARY_SEARCH_PATHS = (
645
+ "\"$(SDKROOT)/usr/lib/swift\"",
646
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
647
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
648
+ "\"$(inherited)\"",
649
+ );
650
+ MTL_ENABLE_DEBUG_INFO = NO;
651
+ SDKROOT = iphoneos;
652
+ VALIDATE_PRODUCT = YES;
653
+ };
654
+ name = Release;
655
+ };
656
+ /* End XCBuildConfiguration section */
657
+
658
+ /* Begin XCConfigurationList section */
659
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */ = {
660
+ isa = XCConfigurationList;
661
+ buildConfigurations = (
662
+ 00E356F61AD99517003FC87E /* Debug */,
663
+ 00E356F71AD99517003FC87E /* Release */,
664
+ );
665
+ defaultConfigurationIsVisible = 0;
666
+ defaultConfigurationName = Release;
667
+ };
668
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = {
669
+ isa = XCConfigurationList;
670
+ buildConfigurations = (
671
+ 13B07F941A680F5B00A75B9A /* Debug */,
672
+ 13B07F951A680F5B00A75B9A /* Release */,
673
+ );
674
+ defaultConfigurationIsVisible = 0;
675
+ defaultConfigurationName = Release;
676
+ };
677
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */ = {
678
+ isa = XCConfigurationList;
679
+ buildConfigurations = (
680
+ 83CBBA201A601CBA00E9B192 /* Debug */,
681
+ 83CBBA211A601CBA00E9B192 /* Release */,
682
+ );
683
+ defaultConfigurationIsVisible = 0;
684
+ defaultConfigurationName = Release;
685
+ };
686
+ /* End XCConfigurationList section */
687
+ };
688
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
689
+ }