@oguzhnatly/react-native-image-manipulator 1.0.5 → 1.0.13

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 (86) hide show
  1. package/.github/workflows/publish.yml +72 -0
  2. package/Example/.bundle/config +2 -0
  3. package/Example/.eslintrc.js +4 -0
  4. package/Example/.prettierrc.js +7 -0
  5. package/Example/.watchmanconfig +1 -1
  6. package/Example/App.tsx +58 -0
  7. package/Example/Gemfile +7 -0
  8. package/Example/Gemfile.lock +99 -0
  9. package/Example/__tests__/App.test.tsx +17 -0
  10. package/Example/android/app/build.gradle +83 -114
  11. package/Example/android/app/debug.keystore +0 -0
  12. package/Example/android/app/proguard-rules.pro +0 -7
  13. package/Example/android/app/src/debug/AndroidManifest.xml +9 -0
  14. package/Example/android/app/src/main/AndroidManifest.xml +6 -7
  15. package/Example/android/app/src/main/java/com/example/MainActivity.kt +22 -0
  16. package/Example/android/app/src/main/java/com/example/MainApplication.kt +45 -0
  17. package/Example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  18. package/Example/android/app/src/main/res/values/styles.xml +2 -1
  19. package/Example/android/build.gradle +11 -29
  20. package/Example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  21. package/Example/android/gradle/wrapper/gradle-wrapper.properties +3 -1
  22. package/Example/android/gradle.properties +25 -2
  23. package/Example/android/gradlew +189 -112
  24. package/Example/android/gradlew.bat +32 -24
  25. package/Example/android/settings.gradle +2 -1
  26. package/Example/app.json +1 -1
  27. package/Example/assets/tiktok.png +0 -0
  28. package/Example/babel.config.js +3 -0
  29. package/Example/index.js +3 -1
  30. package/Example/ios/.xcode.env +11 -0
  31. package/Example/ios/Example/AppDelegate.h +2 -10
  32. package/Example/ios/Example/AppDelegate.mm +31 -0
  33. package/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json +30 -15
  34. package/Example/ios/Example/Info.plist +9 -18
  35. package/Example/ios/Example/LaunchScreen.storyboard +47 -0
  36. package/Example/ios/Example/main.m +2 -8
  37. package/Example/ios/Example.xcodeproj/project.pbxproj +238 -1024
  38. package/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme +2 -43
  39. package/Example/ios/Example.xcworkspace/contents.xcworkspacedata +10 -0
  40. package/Example/ios/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  41. package/Example/ios/ExampleTests/ExampleTests.m +19 -21
  42. package/Example/ios/Podfile +56 -0
  43. package/Example/ios/Podfile.lock +1448 -0
  44. package/Example/jest.config.js +3 -0
  45. package/Example/metro.config.js +43 -0
  46. package/Example/package.json +26 -6
  47. package/Example/tsconfig.json +3 -0
  48. package/Example/yarn.lock +5580 -3025
  49. package/README.md +218 -104
  50. package/android/build.gradle +34 -3
  51. package/android/src/main/java/com/{reactnativeimagemanipulator → oguzhnatly/rnimagemanipulator}/RNImageManipulatorModule.java +7 -4
  52. package/android/src/main/java/com/oguzhnatly/rnimagemanipulator/RNImageManipulatorPackage.java +112 -0
  53. package/android/src/paper/java/com/oguzhnatly/rnimagemanipulator/NativeImageManipulatorModuleSpec.java +33 -0
  54. package/build/fabric/NativeImageManipulatorModule.d.ts +12 -0
  55. package/build/fabric/NativeImageManipulatorModule.js +3 -0
  56. package/build/fabric/NativeImageManipulatorModule.js.map +1 -0
  57. package/build/index.d.ts +18 -17
  58. package/build/index.js +6 -3
  59. package/build/index.js.map +1 -1
  60. package/fabric/NativeImageManipulatorModule.ts +14 -0
  61. package/index.ts +28 -8
  62. package/ios/ImageUtils.h +6 -1
  63. package/ios/ImageUtils.m +180 -0
  64. package/ios/RNImageManipulator.h +10 -6
  65. package/ios/RNImageManipulator.mm +31 -0
  66. package/package.json +17 -2
  67. package/react-native-image-manipulator.podspec +11 -3
  68. package/tsconfig.json +1 -5
  69. package/Example/.babelrc +0 -3
  70. package/Example/.buckconfig +0 -6
  71. package/Example/.flowconfig +0 -70
  72. package/Example/.gitattributes +0 -1
  73. package/Example/App.js +0 -49
  74. package/Example/android/app/BUCK +0 -65
  75. package/Example/android/app/src/main/java/com/example/MainActivity.java +0 -15
  76. package/Example/android/app/src/main/java/com/example/MainApplication.java +0 -45
  77. package/Example/android/keystores/BUCK +0 -8
  78. package/Example/android/keystores/debug.keystore.properties +0 -4
  79. package/Example/ios/Example/AppDelegate.m +0 -35
  80. package/Example/ios/Example/Base.lproj/LaunchScreen.xib +0 -42
  81. package/Example/ios/Example-tvOS/Info.plist +0 -54
  82. package/Example/ios/Example-tvOSTests/Info.plist +0 -24
  83. package/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example-tvOS.xcscheme +0 -129
  84. package/android/src/main/java/com/reactnativeimagemanipulator/RNImageManipulatorPackage.java +0 -29
  85. package/index.d.ts +0 -26
  86. package/ios/RNImageManipulator.m +0 -200
@@ -3,79 +3,20 @@
3
3
  archiveVersion = 1;
4
4
  classes = {
5
5
  };
6
- objectVersion = 46;
6
+ objectVersion = 54;
7
7
  objects = {
8
8
 
9
9
  /* Begin PBXBuildFile section */
10
- 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };
11
- 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };
12
- 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };
13
- 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
14
- 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
15
10
  00E356F31AD99517003FC87E /* ExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ExampleTests.m */; };
16
- 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
17
- 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
18
- 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
19
- 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
20
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
21
- 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
11
+ 0C80B921A6F3F58F76C31292 /* libPods-Example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-Example.a */; };
12
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
22
13
  13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
23
14
  13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
24
- 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
25
- 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
26
- 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
27
- 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
28
- 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
29
- 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
30
- 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
31
- 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
32
- 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
33
- 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
34
- 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
35
- 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
36
- 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
37
- 2DCD954D1E0B4F2C00145EB5 /* ExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ExampleTests.m */; };
38
- 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
39
- 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
40
- ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
15
+ 7699B88040F8A987B510C191 /* libPods-Example-ExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-Example-ExampleTests.a */; };
16
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
41
17
  /* End PBXBuildFile section */
42
18
 
43
19
  /* Begin PBXContainerItemProxy section */
44
- 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
45
- isa = PBXContainerItemProxy;
46
- containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
47
- proxyType = 2;
48
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
49
- remoteInfo = RCTActionSheet;
50
- };
51
- 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
52
- isa = PBXContainerItemProxy;
53
- containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
54
- proxyType = 2;
55
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
56
- remoteInfo = RCTGeolocation;
57
- };
58
- 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
59
- isa = PBXContainerItemProxy;
60
- containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
61
- proxyType = 2;
62
- remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
63
- remoteInfo = RCTImage;
64
- };
65
- 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
66
- isa = PBXContainerItemProxy;
67
- containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
68
- proxyType = 2;
69
- remoteGlobalIDString = 58B511DB1A9E6C8500147676;
70
- remoteInfo = RCTNetwork;
71
- };
72
- 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
73
- isa = PBXContainerItemProxy;
74
- containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
75
- proxyType = 2;
76
- remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
77
- remoteInfo = RCTVibration;
78
- };
79
20
  00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
80
21
  isa = PBXContainerItemProxy;
81
22
  containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
@@ -83,266 +24,26 @@
83
24
  remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
84
25
  remoteInfo = Example;
85
26
  };
86
- 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
87
- isa = PBXContainerItemProxy;
88
- containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
89
- proxyType = 2;
90
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
91
- remoteInfo = RCTSettings;
92
- };
93
- 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
94
- isa = PBXContainerItemProxy;
95
- containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
96
- proxyType = 2;
97
- remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
98
- remoteInfo = RCTWebSocket;
99
- };
100
- 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
101
- isa = PBXContainerItemProxy;
102
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
103
- proxyType = 2;
104
- remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
105
- remoteInfo = React;
106
- };
107
- 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
108
- isa = PBXContainerItemProxy;
109
- containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
110
- proxyType = 1;
111
- remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
112
- remoteInfo = "Example-tvOS";
113
- };
114
- 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
115
- isa = PBXContainerItemProxy;
116
- containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
117
- proxyType = 2;
118
- remoteGlobalIDString = ADD01A681E09402E00F6D226;
119
- remoteInfo = "RCTBlob-tvOS";
120
- };
121
- 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
122
- isa = PBXContainerItemProxy;
123
- containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
124
- proxyType = 2;
125
- remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
126
- remoteInfo = fishhook;
127
- };
128
- 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
129
- isa = PBXContainerItemProxy;
130
- containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
131
- proxyType = 2;
132
- remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
133
- remoteInfo = "fishhook-tvOS";
134
- };
135
- 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = {
136
- isa = PBXContainerItemProxy;
137
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
138
- proxyType = 2;
139
- remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
140
- remoteInfo = jsinspector;
141
- };
142
- 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = {
143
- isa = PBXContainerItemProxy;
144
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
145
- proxyType = 2;
146
- remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
147
- remoteInfo = "jsinspector-tvOS";
148
- };
149
- 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = {
150
- isa = PBXContainerItemProxy;
151
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
152
- proxyType = 2;
153
- remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
154
- remoteInfo = "third-party";
155
- };
156
- 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = {
157
- isa = PBXContainerItemProxy;
158
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
159
- proxyType = 2;
160
- remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
161
- remoteInfo = "third-party-tvOS";
162
- };
163
- 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = {
164
- isa = PBXContainerItemProxy;
165
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
166
- proxyType = 2;
167
- remoteGlobalIDString = 139D7E881E25C6D100323FB7;
168
- remoteInfo = "double-conversion";
169
- };
170
- 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = {
171
- isa = PBXContainerItemProxy;
172
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
173
- proxyType = 2;
174
- remoteGlobalIDString = 3D383D621EBD27B9005632C8;
175
- remoteInfo = "double-conversion-tvOS";
176
- };
177
- 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = {
178
- isa = PBXContainerItemProxy;
179
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
180
- proxyType = 2;
181
- remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
182
- remoteInfo = privatedata;
183
- };
184
- 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = {
185
- isa = PBXContainerItemProxy;
186
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
187
- proxyType = 2;
188
- remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
189
- remoteInfo = "privatedata-tvOS";
190
- };
191
- 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
192
- isa = PBXContainerItemProxy;
193
- containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
194
- proxyType = 2;
195
- remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
196
- remoteInfo = "RCTImage-tvOS";
197
- };
198
- 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
199
- isa = PBXContainerItemProxy;
200
- containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
201
- proxyType = 2;
202
- remoteGlobalIDString = 2D2A28471D9B043800D4039D;
203
- remoteInfo = "RCTLinking-tvOS";
204
- };
205
- 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
206
- isa = PBXContainerItemProxy;
207
- containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
208
- proxyType = 2;
209
- remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
210
- remoteInfo = "RCTNetwork-tvOS";
211
- };
212
- 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
213
- isa = PBXContainerItemProxy;
214
- containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
215
- proxyType = 2;
216
- remoteGlobalIDString = 2D2A28611D9B046600D4039D;
217
- remoteInfo = "RCTSettings-tvOS";
218
- };
219
- 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
220
- isa = PBXContainerItemProxy;
221
- containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
222
- proxyType = 2;
223
- remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
224
- remoteInfo = "RCTText-tvOS";
225
- };
226
- 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
227
- isa = PBXContainerItemProxy;
228
- containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
229
- proxyType = 2;
230
- remoteGlobalIDString = 2D2A28881D9B049200D4039D;
231
- remoteInfo = "RCTWebSocket-tvOS";
232
- };
233
- 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
234
- isa = PBXContainerItemProxy;
235
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
236
- proxyType = 2;
237
- remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
238
- remoteInfo = "React-tvOS";
239
- };
240
- 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
241
- isa = PBXContainerItemProxy;
242
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
243
- proxyType = 2;
244
- remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
245
- remoteInfo = yoga;
246
- };
247
- 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
248
- isa = PBXContainerItemProxy;
249
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
250
- proxyType = 2;
251
- remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
252
- remoteInfo = "yoga-tvOS";
253
- };
254
- 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
255
- isa = PBXContainerItemProxy;
256
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
257
- proxyType = 2;
258
- remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
259
- remoteInfo = cxxreact;
260
- };
261
- 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
262
- isa = PBXContainerItemProxy;
263
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
264
- proxyType = 2;
265
- remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
266
- remoteInfo = "cxxreact-tvOS";
267
- };
268
- 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
269
- isa = PBXContainerItemProxy;
270
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
271
- proxyType = 2;
272
- remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
273
- remoteInfo = jschelpers;
274
- };
275
- 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
276
- isa = PBXContainerItemProxy;
277
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
278
- proxyType = 2;
279
- remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
280
- remoteInfo = "jschelpers-tvOS";
281
- };
282
- 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
283
- isa = PBXContainerItemProxy;
284
- containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
285
- proxyType = 2;
286
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
287
- remoteInfo = RCTAnimation;
288
- };
289
- 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
290
- isa = PBXContainerItemProxy;
291
- containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
292
- proxyType = 2;
293
- remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
294
- remoteInfo = "RCTAnimation-tvOS";
295
- };
296
- 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
297
- isa = PBXContainerItemProxy;
298
- containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
299
- proxyType = 2;
300
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
301
- remoteInfo = RCTLinking;
302
- };
303
- 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
304
- isa = PBXContainerItemProxy;
305
- containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
306
- proxyType = 2;
307
- remoteGlobalIDString = 58B5119B1A9E6C1200147676;
308
- remoteInfo = RCTText;
309
- };
310
- ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
311
- isa = PBXContainerItemProxy;
312
- containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
313
- proxyType = 2;
314
- remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
315
- remoteInfo = RCTBlob;
316
- };
317
27
  /* End PBXContainerItemProxy section */
318
28
 
319
29
  /* Begin PBXFileReference section */
320
- 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
321
- 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = "<group>"; };
322
- 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = "<group>"; };
323
- 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = "<group>"; };
324
- 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = "<group>"; };
325
- 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = "<group>"; };
326
30
  00E356EE1AD99517003FC87E /* ExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
327
31
  00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
328
32
  00E356F21AD99517003FC87E /* ExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExampleTests.m; sourceTree = "<group>"; };
329
- 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
330
- 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
331
33
  13B07F961A680F5B00A75B9A /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
332
34
  13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = Example/AppDelegate.h; sourceTree = "<group>"; };
333
- 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = Example/AppDelegate.m; sourceTree = "<group>"; };
334
- 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
35
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = Example/AppDelegate.mm; sourceTree = "<group>"; };
335
36
  13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = Example/Images.xcassets; sourceTree = "<group>"; };
336
37
  13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Example/Info.plist; sourceTree = "<group>"; };
337
38
  13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Example/main.m; sourceTree = "<group>"; };
338
- 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
339
- 2D02E47B1E0B4A5D006451C7 /* Example-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Example-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
340
- 2D02E4901E0B4A5D006451C7 /* Example-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Example-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
341
- 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
342
- 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
343
- 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
344
- 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
345
- ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = "<group>"; };
39
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-Example-ExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example-ExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
40
+ 3B4392A12AC88292D35C810B /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.debug.xcconfig"; path = "Target Support Files/Pods-Example/Pods-Example.debug.xcconfig"; sourceTree = "<group>"; };
41
+ 5709B34CF0A7D63546082F79 /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.release.xcconfig"; path = "Target Support Files/Pods-Example/Pods-Example.release.xcconfig"; sourceTree = "<group>"; };
42
+ 5B7EB9410499542E8C5724F5 /* 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>"; };
43
+ 5DCACB8F33CDC322A6C60F78 /* libPods-Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
44
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = Example/LaunchScreen.storyboard; sourceTree = "<group>"; };
45
+ 89C6BE57DB24E9ADA2F236DE /* 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>"; };
46
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
346
47
  /* End PBXFileReference section */
347
48
 
348
49
  /* Begin PBXFrameworksBuildPhase section */
@@ -350,7 +51,7 @@
350
51
  isa = PBXFrameworksBuildPhase;
351
52
  buildActionMask = 2147483647;
352
53
  files = (
353
- 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
54
+ 7699B88040F8A987B510C191 /* libPods-Example-ExampleTests.a in Frameworks */,
354
55
  );
355
56
  runOnlyForDeploymentPostprocessing = 0;
356
57
  };
@@ -358,89 +59,13 @@
358
59
  isa = PBXFrameworksBuildPhase;
359
60
  buildActionMask = 2147483647;
360
61
  files = (
361
- ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
362
- 11D1A2F320CAFA9E000508D9 /* libRCTAnimation.a in Frameworks */,
363
- 146834051AC3E58100842450 /* libReact.a in Frameworks */,
364
- 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
365
- 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
366
- 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
367
- 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
368
- 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
369
- 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
370
- 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
371
- 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
372
- 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
373
- );
374
- runOnlyForDeploymentPostprocessing = 0;
375
- };
376
- 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
377
- isa = PBXFrameworksBuildPhase;
378
- buildActionMask = 2147483647;
379
- files = (
380
- 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */,
381
- 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
382
- 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
383
- 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
384
- 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
385
- 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
386
- 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
387
- 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
388
- );
389
- runOnlyForDeploymentPostprocessing = 0;
390
- };
391
- 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
392
- isa = PBXFrameworksBuildPhase;
393
- buildActionMask = 2147483647;
394
- files = (
395
- 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */,
62
+ 0C80B921A6F3F58F76C31292 /* libPods-Example.a in Frameworks */,
396
63
  );
397
64
  runOnlyForDeploymentPostprocessing = 0;
398
65
  };
399
66
  /* End PBXFrameworksBuildPhase section */
400
67
 
401
68
  /* Begin PBXGroup section */
402
- 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
403
- isa = PBXGroup;
404
- children = (
405
- 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
406
- );
407
- name = Products;
408
- sourceTree = "<group>";
409
- };
410
- 00C302B61ABCB90400DB3ED1 /* Products */ = {
411
- isa = PBXGroup;
412
- children = (
413
- 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
414
- );
415
- name = Products;
416
- sourceTree = "<group>";
417
- };
418
- 00C302BC1ABCB91800DB3ED1 /* Products */ = {
419
- isa = PBXGroup;
420
- children = (
421
- 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
422
- 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
423
- );
424
- name = Products;
425
- sourceTree = "<group>";
426
- };
427
- 00C302D41ABCB9D200DB3ED1 /* Products */ = {
428
- isa = PBXGroup;
429
- children = (
430
- 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
431
- 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
432
- );
433
- name = Products;
434
- sourceTree = "<group>";
435
- };
436
- 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
437
- isa = PBXGroup;
438
- children = (
439
- 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
440
- );
441
- name = Products;
442
- sourceTree = "<group>";
443
- };
444
69
  00E356EF1AD99517003FC87E /* ExampleTests */ = {
445
70
  isa = PBXGroup;
446
71
  children = (
@@ -458,117 +83,36 @@
458
83
  name = "Supporting Files";
459
84
  sourceTree = "<group>";
460
85
  };
461
- 139105B71AF99BAD00B5F7CC /* Products */ = {
462
- isa = PBXGroup;
463
- children = (
464
- 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
465
- 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
466
- );
467
- name = Products;
468
- sourceTree = "<group>";
469
- };
470
- 139FDEE71B06529A00C62182 /* Products */ = {
471
- isa = PBXGroup;
472
- children = (
473
- 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
474
- 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
475
- 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */,
476
- 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */,
477
- );
478
- name = Products;
479
- sourceTree = "<group>";
480
- };
481
86
  13B07FAE1A68108700A75B9A /* Example */ = {
482
87
  isa = PBXGroup;
483
88
  children = (
484
- 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
485
89
  13B07FAF1A68108700A75B9A /* AppDelegate.h */,
486
- 13B07FB01A68108700A75B9A /* AppDelegate.m */,
90
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
487
91
  13B07FB51A68108700A75B9A /* Images.xcassets */,
488
92
  13B07FB61A68108700A75B9A /* Info.plist */,
489
- 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
93
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
490
94
  13B07FB71A68108700A75B9A /* main.m */,
491
95
  );
492
96
  name = Example;
493
97
  sourceTree = "<group>";
494
98
  };
495
- 146834001AC3E56700842450 /* Products */ = {
496
- isa = PBXGroup;
497
- children = (
498
- 146834041AC3E56700842450 /* libReact.a */,
499
- 3DAD3EA31DF850E9000B6D8A /* libReact.a */,
500
- 3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
501
- 3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
502
- 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
503
- 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
504
- 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
505
- 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
506
- 2DF0FFDF2056DD460020B375 /* libjsinspector.a */,
507
- 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */,
508
- 2DF0FFE32056DD460020B375 /* libthird-party.a */,
509
- 2DF0FFE52056DD460020B375 /* libthird-party.a */,
510
- 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */,
511
- 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */,
512
- 2DF0FFEB2056DD460020B375 /* libprivatedata.a */,
513
- 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */,
514
- );
515
- name = Products;
516
- sourceTree = "<group>";
517
- };
518
99
  2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
519
100
  isa = PBXGroup;
520
101
  children = (
521
- 2D16E6891FA4F8E400B85C8A /* libReact.a */,
102
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
103
+ 5DCACB8F33CDC322A6C60F78 /* libPods-Example.a */,
104
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-Example-ExampleTests.a */,
522
105
  );
523
106
  name = Frameworks;
524
107
  sourceTree = "<group>";
525
108
  };
526
- 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
527
- isa = PBXGroup;
528
- children = (
529
- 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
530
- 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
531
- );
532
- name = Products;
533
- sourceTree = "<group>";
534
- };
535
- 78C398B11ACF4ADC00677621 /* Products */ = {
536
- isa = PBXGroup;
537
- children = (
538
- 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
539
- 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
540
- );
541
- name = Products;
542
- sourceTree = "<group>";
543
- };
544
109
  832341AE1AAA6A7D00B99B32 /* Libraries */ = {
545
110
  isa = PBXGroup;
546
111
  children = (
547
- 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
548
- 146833FF1AC3E56700842450 /* React.xcodeproj */,
549
- 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
550
- ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
551
- 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
552
- 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
553
- 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
554
- 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
555
- 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
556
- 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
557
- 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
558
- 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
559
112
  );
560
113
  name = Libraries;
561
114
  sourceTree = "<group>";
562
115
  };
563
- 832341B11AAA6A8300B99B32 /* Products */ = {
564
- isa = PBXGroup;
565
- children = (
566
- 832341B51AAA6A8300B99B32 /* libRCTText.a */,
567
- 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
568
- );
569
- name = Products;
570
- sourceTree = "<group>";
571
- };
572
116
  83CBB9F61A601CBA00E9B192 = {
573
117
  isa = PBXGroup;
574
118
  children = (
@@ -577,6 +121,7 @@
577
121
  00E356EF1AD99517003FC87E /* ExampleTests */,
578
122
  83CBBA001A601CBA00E9B192 /* Products */,
579
123
  2D16E6871FA4F8E400B85C8A /* Frameworks */,
124
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
580
125
  );
581
126
  indentWidth = 2;
582
127
  sourceTree = "<group>";
@@ -588,19 +133,19 @@
588
133
  children = (
589
134
  13B07F961A680F5B00A75B9A /* Example.app */,
590
135
  00E356EE1AD99517003FC87E /* ExampleTests.xctest */,
591
- 2D02E47B1E0B4A5D006451C7 /* Example-tvOS.app */,
592
- 2D02E4901E0B4A5D006451C7 /* Example-tvOSTests.xctest */,
593
136
  );
594
137
  name = Products;
595
138
  sourceTree = "<group>";
596
139
  };
597
- ADBDB9201DFEBF0600ED6528 /* Products */ = {
140
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
598
141
  isa = PBXGroup;
599
142
  children = (
600
- ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
601
- 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */,
143
+ 3B4392A12AC88292D35C810B /* Pods-Example.debug.xcconfig */,
144
+ 5709B34CF0A7D63546082F79 /* Pods-Example.release.xcconfig */,
145
+ 5B7EB9410499542E8C5724F5 /* Pods-Example-ExampleTests.debug.xcconfig */,
146
+ 89C6BE57DB24E9ADA2F236DE /* Pods-Example-ExampleTests.release.xcconfig */,
602
147
  );
603
- name = Products;
148
+ path = Pods;
604
149
  sourceTree = "<group>";
605
150
  };
606
151
  /* End PBXGroup section */
@@ -610,9 +155,12 @@
610
155
  isa = PBXNativeTarget;
611
156
  buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "ExampleTests" */;
612
157
  buildPhases = (
158
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
613
159
  00E356EA1AD99517003FC87E /* Sources */,
614
160
  00E356EB1AD99517003FC87E /* Frameworks */,
615
161
  00E356EC1AD99517003FC87E /* Resources */,
162
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
163
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
616
164
  );
617
165
  buildRules = (
618
166
  );
@@ -628,83 +176,43 @@
628
176
  isa = PBXNativeTarget;
629
177
  buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example" */;
630
178
  buildPhases = (
179
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
631
180
  13B07F871A680F5B00A75B9A /* Sources */,
632
181
  13B07F8C1A680F5B00A75B9A /* Frameworks */,
633
182
  13B07F8E1A680F5B00A75B9A /* Resources */,
634
183
  00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
184
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
185
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
635
186
  );
636
187
  buildRules = (
637
188
  );
638
189
  dependencies = (
639
190
  );
640
191
  name = Example;
641
- productName = "Hello World";
192
+ productName = Example;
642
193
  productReference = 13B07F961A680F5B00A75B9A /* Example.app */;
643
194
  productType = "com.apple.product-type.application";
644
195
  };
645
- 2D02E47A1E0B4A5D006451C7 /* Example-tvOS */ = {
646
- isa = PBXNativeTarget;
647
- buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Example-tvOS" */;
648
- buildPhases = (
649
- 2D02E4771E0B4A5D006451C7 /* Sources */,
650
- 2D02E4781E0B4A5D006451C7 /* Frameworks */,
651
- 2D02E4791E0B4A5D006451C7 /* Resources */,
652
- 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
653
- );
654
- buildRules = (
655
- );
656
- dependencies = (
657
- );
658
- name = "Example-tvOS";
659
- productName = "Example-tvOS";
660
- productReference = 2D02E47B1E0B4A5D006451C7 /* Example-tvOS.app */;
661
- productType = "com.apple.product-type.application";
662
- };
663
- 2D02E48F1E0B4A5D006451C7 /* Example-tvOSTests */ = {
664
- isa = PBXNativeTarget;
665
- buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Example-tvOSTests" */;
666
- buildPhases = (
667
- 2D02E48C1E0B4A5D006451C7 /* Sources */,
668
- 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
669
- 2D02E48E1E0B4A5D006451C7 /* Resources */,
670
- );
671
- buildRules = (
672
- );
673
- dependencies = (
674
- 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
675
- );
676
- name = "Example-tvOSTests";
677
- productName = "Example-tvOSTests";
678
- productReference = 2D02E4901E0B4A5D006451C7 /* Example-tvOSTests.xctest */;
679
- productType = "com.apple.product-type.bundle.unit-test";
680
- };
681
196
  /* End PBXNativeTarget section */
682
197
 
683
198
  /* Begin PBXProject section */
684
199
  83CBB9F71A601CBA00E9B192 /* Project object */ = {
685
200
  isa = PBXProject;
686
201
  attributes = {
687
- LastUpgradeCheck = 0940;
688
- ORGANIZATIONNAME = Facebook;
202
+ LastUpgradeCheck = 1210;
689
203
  TargetAttributes = {
690
204
  00E356ED1AD99517003FC87E = {
691
205
  CreatedOnToolsVersion = 6.2;
692
206
  TestTargetID = 13B07F861A680F5B00A75B9A;
693
207
  };
694
- 2D02E47A1E0B4A5D006451C7 = {
695
- CreatedOnToolsVersion = 8.2.1;
696
- ProvisioningStyle = Automatic;
697
- };
698
- 2D02E48F1E0B4A5D006451C7 = {
699
- CreatedOnToolsVersion = 8.2.1;
700
- ProvisioningStyle = Automatic;
701
- TestTargetID = 2D02E47A1E0B4A5D006451C7;
208
+ 13B07F861A680F5B00A75B9A = {
209
+ LastSwiftMigration = 1120;
702
210
  };
703
211
  };
704
212
  };
705
213
  buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Example" */;
706
- compatibilityVersion = "Xcode 3.2";
707
- developmentRegion = English;
214
+ compatibilityVersion = "Xcode 12.0";
215
+ developmentRegion = en;
708
216
  hasScannedForEncodings = 0;
709
217
  knownRegions = (
710
218
  en,
@@ -713,328 +221,14 @@
713
221
  mainGroup = 83CBB9F61A601CBA00E9B192;
714
222
  productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
715
223
  projectDirPath = "";
716
- projectReferences = (
717
- {
718
- ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
719
- ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
720
- },
721
- {
722
- ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
723
- ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
724
- },
725
- {
726
- ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
727
- ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
728
- },
729
- {
730
- ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
731
- ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
732
- },
733
- {
734
- ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
735
- ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
736
- },
737
- {
738
- ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
739
- ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
740
- },
741
- {
742
- ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
743
- ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
744
- },
745
- {
746
- ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
747
- ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
748
- },
749
- {
750
- ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
751
- ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
752
- },
753
- {
754
- ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
755
- ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
756
- },
757
- {
758
- ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
759
- ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
760
- },
761
- {
762
- ProductGroup = 146834001AC3E56700842450 /* Products */;
763
- ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
764
- },
765
- );
766
224
  projectRoot = "";
767
225
  targets = (
768
226
  13B07F861A680F5B00A75B9A /* Example */,
769
227
  00E356ED1AD99517003FC87E /* ExampleTests */,
770
- 2D02E47A1E0B4A5D006451C7 /* Example-tvOS */,
771
- 2D02E48F1E0B4A5D006451C7 /* Example-tvOSTests */,
772
228
  );
773
229
  };
774
230
  /* End PBXProject section */
775
231
 
776
- /* Begin PBXReferenceProxy section */
777
- 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
778
- isa = PBXReferenceProxy;
779
- fileType = archive.ar;
780
- path = libRCTActionSheet.a;
781
- remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
782
- sourceTree = BUILT_PRODUCTS_DIR;
783
- };
784
- 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
785
- isa = PBXReferenceProxy;
786
- fileType = archive.ar;
787
- path = libRCTGeolocation.a;
788
- remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
789
- sourceTree = BUILT_PRODUCTS_DIR;
790
- };
791
- 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
792
- isa = PBXReferenceProxy;
793
- fileType = archive.ar;
794
- path = libRCTImage.a;
795
- remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
796
- sourceTree = BUILT_PRODUCTS_DIR;
797
- };
798
- 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
799
- isa = PBXReferenceProxy;
800
- fileType = archive.ar;
801
- path = libRCTNetwork.a;
802
- remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
803
- sourceTree = BUILT_PRODUCTS_DIR;
804
- };
805
- 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
806
- isa = PBXReferenceProxy;
807
- fileType = archive.ar;
808
- path = libRCTVibration.a;
809
- remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
810
- sourceTree = BUILT_PRODUCTS_DIR;
811
- };
812
- 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
813
- isa = PBXReferenceProxy;
814
- fileType = archive.ar;
815
- path = libRCTSettings.a;
816
- remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
817
- sourceTree = BUILT_PRODUCTS_DIR;
818
- };
819
- 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
820
- isa = PBXReferenceProxy;
821
- fileType = archive.ar;
822
- path = libRCTWebSocket.a;
823
- remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
824
- sourceTree = BUILT_PRODUCTS_DIR;
825
- };
826
- 146834041AC3E56700842450 /* libReact.a */ = {
827
- isa = PBXReferenceProxy;
828
- fileType = archive.ar;
829
- path = libReact.a;
830
- remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
831
- sourceTree = BUILT_PRODUCTS_DIR;
832
- };
833
- 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = {
834
- isa = PBXReferenceProxy;
835
- fileType = archive.ar;
836
- path = "libRCTBlob-tvOS.a";
837
- remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */;
838
- sourceTree = BUILT_PRODUCTS_DIR;
839
- };
840
- 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = {
841
- isa = PBXReferenceProxy;
842
- fileType = archive.ar;
843
- path = libfishhook.a;
844
- remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */;
845
- sourceTree = BUILT_PRODUCTS_DIR;
846
- };
847
- 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = {
848
- isa = PBXReferenceProxy;
849
- fileType = archive.ar;
850
- path = "libfishhook-tvOS.a";
851
- remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */;
852
- sourceTree = BUILT_PRODUCTS_DIR;
853
- };
854
- 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = {
855
- isa = PBXReferenceProxy;
856
- fileType = archive.ar;
857
- path = libjsinspector.a;
858
- remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */;
859
- sourceTree = BUILT_PRODUCTS_DIR;
860
- };
861
- 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = {
862
- isa = PBXReferenceProxy;
863
- fileType = archive.ar;
864
- path = "libjsinspector-tvOS.a";
865
- remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */;
866
- sourceTree = BUILT_PRODUCTS_DIR;
867
- };
868
- 2DF0FFE32056DD460020B375 /* libthird-party.a */ = {
869
- isa = PBXReferenceProxy;
870
- fileType = archive.ar;
871
- path = "libthird-party.a";
872
- remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */;
873
- sourceTree = BUILT_PRODUCTS_DIR;
874
- };
875
- 2DF0FFE52056DD460020B375 /* libthird-party.a */ = {
876
- isa = PBXReferenceProxy;
877
- fileType = archive.ar;
878
- path = "libthird-party.a";
879
- remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */;
880
- sourceTree = BUILT_PRODUCTS_DIR;
881
- };
882
- 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = {
883
- isa = PBXReferenceProxy;
884
- fileType = archive.ar;
885
- path = "libdouble-conversion.a";
886
- remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */;
887
- sourceTree = BUILT_PRODUCTS_DIR;
888
- };
889
- 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = {
890
- isa = PBXReferenceProxy;
891
- fileType = archive.ar;
892
- path = "libdouble-conversion.a";
893
- remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */;
894
- sourceTree = BUILT_PRODUCTS_DIR;
895
- };
896
- 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = {
897
- isa = PBXReferenceProxy;
898
- fileType = archive.ar;
899
- path = libprivatedata.a;
900
- remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */;
901
- sourceTree = BUILT_PRODUCTS_DIR;
902
- };
903
- 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = {
904
- isa = PBXReferenceProxy;
905
- fileType = archive.ar;
906
- path = "libprivatedata-tvOS.a";
907
- remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */;
908
- sourceTree = BUILT_PRODUCTS_DIR;
909
- };
910
- 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
911
- isa = PBXReferenceProxy;
912
- fileType = archive.ar;
913
- path = "libRCTImage-tvOS.a";
914
- remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
915
- sourceTree = BUILT_PRODUCTS_DIR;
916
- };
917
- 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
918
- isa = PBXReferenceProxy;
919
- fileType = archive.ar;
920
- path = "libRCTLinking-tvOS.a";
921
- remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
922
- sourceTree = BUILT_PRODUCTS_DIR;
923
- };
924
- 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
925
- isa = PBXReferenceProxy;
926
- fileType = archive.ar;
927
- path = "libRCTNetwork-tvOS.a";
928
- remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
929
- sourceTree = BUILT_PRODUCTS_DIR;
930
- };
931
- 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
932
- isa = PBXReferenceProxy;
933
- fileType = archive.ar;
934
- path = "libRCTSettings-tvOS.a";
935
- remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
936
- sourceTree = BUILT_PRODUCTS_DIR;
937
- };
938
- 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
939
- isa = PBXReferenceProxy;
940
- fileType = archive.ar;
941
- path = "libRCTText-tvOS.a";
942
- remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
943
- sourceTree = BUILT_PRODUCTS_DIR;
944
- };
945
- 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
946
- isa = PBXReferenceProxy;
947
- fileType = archive.ar;
948
- path = "libRCTWebSocket-tvOS.a";
949
- remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
950
- sourceTree = BUILT_PRODUCTS_DIR;
951
- };
952
- 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
953
- isa = PBXReferenceProxy;
954
- fileType = archive.ar;
955
- path = libReact.a;
956
- remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
957
- sourceTree = BUILT_PRODUCTS_DIR;
958
- };
959
- 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
960
- isa = PBXReferenceProxy;
961
- fileType = archive.ar;
962
- path = libyoga.a;
963
- remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
964
- sourceTree = BUILT_PRODUCTS_DIR;
965
- };
966
- 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
967
- isa = PBXReferenceProxy;
968
- fileType = archive.ar;
969
- path = libyoga.a;
970
- remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
971
- sourceTree = BUILT_PRODUCTS_DIR;
972
- };
973
- 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
974
- isa = PBXReferenceProxy;
975
- fileType = archive.ar;
976
- path = libcxxreact.a;
977
- remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
978
- sourceTree = BUILT_PRODUCTS_DIR;
979
- };
980
- 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
981
- isa = PBXReferenceProxy;
982
- fileType = archive.ar;
983
- path = libcxxreact.a;
984
- remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
985
- sourceTree = BUILT_PRODUCTS_DIR;
986
- };
987
- 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
988
- isa = PBXReferenceProxy;
989
- fileType = archive.ar;
990
- path = libjschelpers.a;
991
- remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
992
- sourceTree = BUILT_PRODUCTS_DIR;
993
- };
994
- 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
995
- isa = PBXReferenceProxy;
996
- fileType = archive.ar;
997
- path = libjschelpers.a;
998
- remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
999
- sourceTree = BUILT_PRODUCTS_DIR;
1000
- };
1001
- 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1002
- isa = PBXReferenceProxy;
1003
- fileType = archive.ar;
1004
- path = libRCTAnimation.a;
1005
- remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1006
- sourceTree = BUILT_PRODUCTS_DIR;
1007
- };
1008
- 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1009
- isa = PBXReferenceProxy;
1010
- fileType = archive.ar;
1011
- path = libRCTAnimation.a;
1012
- remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1013
- sourceTree = BUILT_PRODUCTS_DIR;
1014
- };
1015
- 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
1016
- isa = PBXReferenceProxy;
1017
- fileType = archive.ar;
1018
- path = libRCTLinking.a;
1019
- remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
1020
- sourceTree = BUILT_PRODUCTS_DIR;
1021
- };
1022
- 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
1023
- isa = PBXReferenceProxy;
1024
- fileType = archive.ar;
1025
- path = libRCTText.a;
1026
- remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
1027
- sourceTree = BUILT_PRODUCTS_DIR;
1028
- };
1029
- ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
1030
- isa = PBXReferenceProxy;
1031
- fileType = archive.ar;
1032
- path = libRCTBlob.a;
1033
- remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
1034
- sourceTree = BUILT_PRODUCTS_DIR;
1035
- };
1036
- /* End PBXReferenceProxy section */
1037
-
1038
232
  /* Begin PBXResourcesBuildPhase section */
1039
233
  00E356EC1AD99517003FC87E /* Resources */ = {
1040
234
  isa = PBXResourcesBuildPhase;
@@ -1047,91 +241,159 @@
1047
241
  isa = PBXResourcesBuildPhase;
1048
242
  buildActionMask = 2147483647;
1049
243
  files = (
244
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
1050
245
  13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
1051
- 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
1052
246
  );
1053
247
  runOnlyForDeploymentPostprocessing = 0;
1054
248
  };
1055
- 2D02E4791E0B4A5D006451C7 /* Resources */ = {
1056
- isa = PBXResourcesBuildPhase;
249
+ /* End PBXResourcesBuildPhase section */
250
+
251
+ /* Begin PBXShellScriptBuildPhase section */
252
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
253
+ isa = PBXShellScriptBuildPhase;
1057
254
  buildActionMask = 2147483647;
1058
255
  files = (
1059
- 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
256
+ );
257
+ inputPaths = (
258
+ "$(SRCROOT)/.xcode.env.local",
259
+ "$(SRCROOT)/.xcode.env",
260
+ );
261
+ name = "Bundle React Native code and images";
262
+ outputPaths = (
1060
263
  );
1061
264
  runOnlyForDeploymentPostprocessing = 0;
265
+ shellPath = /bin/sh;
266
+ shellScript = "set -e\n\nWITH_ENVIRONMENT=\"../node_modules/react-native/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"../node_modules/react-native/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
1062
267
  };
1063
- 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
1064
- isa = PBXResourcesBuildPhase;
268
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
269
+ isa = PBXShellScriptBuildPhase;
1065
270
  buildActionMask = 2147483647;
1066
271
  files = (
1067
272
  );
273
+ inputFileListPaths = (
274
+ "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks-${CONFIGURATION}-input-files.xcfilelist",
275
+ );
276
+ name = "[CP] Embed Pods Frameworks";
277
+ outputFileListPaths = (
278
+ "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks-${CONFIGURATION}-output-files.xcfilelist",
279
+ );
1068
280
  runOnlyForDeploymentPostprocessing = 0;
281
+ shellPath = /bin/sh;
282
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks.sh\"\n";
283
+ showEnvVarsInLog = 0;
1069
284
  };
1070
- /* End PBXResourcesBuildPhase section */
1071
-
1072
- /* Begin PBXShellScriptBuildPhase section */
1073
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
285
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
1074
286
  isa = PBXShellScriptBuildPhase;
1075
287
  buildActionMask = 2147483647;
1076
288
  files = (
1077
289
  );
290
+ inputFileListPaths = (
291
+ );
1078
292
  inputPaths = (
293
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
294
+ "${PODS_ROOT}/Manifest.lock",
295
+ );
296
+ name = "[CP] Check Pods Manifest.lock";
297
+ outputFileListPaths = (
1079
298
  );
1080
- name = "Bundle React Native code and images";
1081
299
  outputPaths = (
300
+ "$(DERIVED_FILE_DIR)/Pods-Example-ExampleTests-checkManifestLockResult.txt",
1082
301
  );
1083
302
  runOnlyForDeploymentPostprocessing = 0;
1084
303
  shellPath = /bin/sh;
1085
- shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
304
+ 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";
305
+ showEnvVarsInLog = 0;
1086
306
  };
1087
- 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
307
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
1088
308
  isa = PBXShellScriptBuildPhase;
1089
309
  buildActionMask = 2147483647;
1090
310
  files = (
1091
311
  );
312
+ inputFileListPaths = (
313
+ );
1092
314
  inputPaths = (
315
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
316
+ "${PODS_ROOT}/Manifest.lock",
317
+ );
318
+ name = "[CP] Check Pods Manifest.lock";
319
+ outputFileListPaths = (
1093
320
  );
1094
- name = "Bundle React Native Code And Images";
1095
321
  outputPaths = (
322
+ "$(DERIVED_FILE_DIR)/Pods-Example-checkManifestLockResult.txt",
1096
323
  );
1097
324
  runOnlyForDeploymentPostprocessing = 0;
1098
325
  shellPath = /bin/sh;
1099
- shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
326
+ 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";
327
+ showEnvVarsInLog = 0;
1100
328
  };
1101
- /* End PBXShellScriptBuildPhase section */
1102
-
1103
- /* Begin PBXSourcesBuildPhase section */
1104
- 00E356EA1AD99517003FC87E /* Sources */ = {
1105
- isa = PBXSourcesBuildPhase;
329
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
330
+ isa = PBXShellScriptBuildPhase;
1106
331
  buildActionMask = 2147483647;
1107
332
  files = (
1108
- 00E356F31AD99517003FC87E /* ExampleTests.m in Sources */,
333
+ );
334
+ inputFileListPaths = (
335
+ "${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
336
+ );
337
+ name = "[CP] Embed Pods Frameworks";
338
+ outputFileListPaths = (
339
+ "${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
1109
340
  );
1110
341
  runOnlyForDeploymentPostprocessing = 0;
342
+ shellPath = /bin/sh;
343
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-frameworks.sh\"\n";
344
+ showEnvVarsInLog = 0;
1111
345
  };
1112
- 13B07F871A680F5B00A75B9A /* Sources */ = {
1113
- isa = PBXSourcesBuildPhase;
346
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
347
+ isa = PBXShellScriptBuildPhase;
1114
348
  buildActionMask = 2147483647;
1115
349
  files = (
1116
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
1117
- 13B07FC11A68108700A75B9A /* main.m in Sources */,
350
+ );
351
+ inputFileListPaths = (
352
+ "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-resources-${CONFIGURATION}-input-files.xcfilelist",
353
+ );
354
+ name = "[CP] Copy Pods Resources";
355
+ outputFileListPaths = (
356
+ "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-resources-${CONFIGURATION}-output-files.xcfilelist",
1118
357
  );
1119
358
  runOnlyForDeploymentPostprocessing = 0;
359
+ shellPath = /bin/sh;
360
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-resources.sh\"\n";
361
+ showEnvVarsInLog = 0;
1120
362
  };
1121
- 2D02E4771E0B4A5D006451C7 /* Sources */ = {
363
+ F6A41C54EA430FDDC6A6ED99 /* [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
+ /* End PBXShellScriptBuildPhase section */
381
+
382
+ /* Begin PBXSourcesBuildPhase section */
383
+ 00E356EA1AD99517003FC87E /* Sources */ = {
1122
384
  isa = PBXSourcesBuildPhase;
1123
385
  buildActionMask = 2147483647;
1124
386
  files = (
1125
- 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
1126
- 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
387
+ 00E356F31AD99517003FC87E /* ExampleTests.m in Sources */,
1127
388
  );
1128
389
  runOnlyForDeploymentPostprocessing = 0;
1129
390
  };
1130
- 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
391
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
1131
392
  isa = PBXSourcesBuildPhase;
1132
393
  buildActionMask = 2147483647;
1133
394
  files = (
1134
- 2DCD954D1E0B4F2C00145EB5 /* ExampleTests.m in Sources */,
395
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
396
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
1135
397
  );
1136
398
  runOnlyForDeploymentPostprocessing = 0;
1137
399
  };
@@ -1143,28 +405,12 @@
1143
405
  target = 13B07F861A680F5B00A75B9A /* Example */;
1144
406
  targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
1145
407
  };
1146
- 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
1147
- isa = PBXTargetDependency;
1148
- target = 2D02E47A1E0B4A5D006451C7 /* Example-tvOS */;
1149
- targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
1150
- };
1151
408
  /* End PBXTargetDependency section */
1152
409
 
1153
- /* Begin PBXVariantGroup section */
1154
- 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
1155
- isa = PBXVariantGroup;
1156
- children = (
1157
- 13B07FB21A68108700A75B9A /* Base */,
1158
- );
1159
- name = LaunchScreen.xib;
1160
- path = Example;
1161
- sourceTree = "<group>";
1162
- };
1163
- /* End PBXVariantGroup section */
1164
-
1165
410
  /* Begin XCBuildConfiguration section */
1166
411
  00E356F61AD99517003FC87E /* Debug */ = {
1167
412
  isa = XCBuildConfiguration;
413
+ baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-Example-ExampleTests.debug.xcconfig */;
1168
414
  buildSettings = {
1169
415
  BUNDLE_LOADER = "$(TEST_HOST)";
1170
416
  GCC_PREPROCESSOR_DEFINITIONS = (
@@ -1172,11 +418,16 @@
1172
418
  "$(inherited)",
1173
419
  );
1174
420
  INFOPLIST_FILE = ExampleTests/Info.plist;
1175
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1176
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
421
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
422
+ LD_RUNPATH_SEARCH_PATHS = (
423
+ "$(inherited)",
424
+ "@executable_path/Frameworks",
425
+ "@loader_path/Frameworks",
426
+ );
1177
427
  OTHER_LDFLAGS = (
1178
428
  "-ObjC",
1179
429
  "-lc++",
430
+ "$(inherited)",
1180
431
  );
1181
432
  PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
1182
433
  PRODUCT_NAME = "$(TARGET_NAME)";
@@ -1186,15 +437,21 @@
1186
437
  };
1187
438
  00E356F71AD99517003FC87E /* Release */ = {
1188
439
  isa = XCBuildConfiguration;
440
+ baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-Example-ExampleTests.release.xcconfig */;
1189
441
  buildSettings = {
1190
442
  BUNDLE_LOADER = "$(TEST_HOST)";
1191
443
  COPY_PHASE_STRIP = NO;
1192
444
  INFOPLIST_FILE = ExampleTests/Info.plist;
1193
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1194
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
445
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
446
+ LD_RUNPATH_SEARCH_PATHS = (
447
+ "$(inherited)",
448
+ "@executable_path/Frameworks",
449
+ "@loader_path/Frameworks",
450
+ );
1195
451
  OTHER_LDFLAGS = (
1196
452
  "-ObjC",
1197
453
  "-lc++",
454
+ "$(inherited)",
1198
455
  );
1199
456
  PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
1200
457
  PRODUCT_NAME = "$(TARGET_NAME)";
@@ -1204,12 +461,18 @@
1204
461
  };
1205
462
  13B07F941A680F5B00A75B9A /* Debug */ = {
1206
463
  isa = XCBuildConfiguration;
464
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-Example.debug.xcconfig */;
1207
465
  buildSettings = {
1208
466
  ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
467
+ CLANG_ENABLE_MODULES = YES;
1209
468
  CURRENT_PROJECT_VERSION = 1;
1210
- DEAD_CODE_STRIPPING = NO;
469
+ ENABLE_BITCODE = NO;
1211
470
  INFOPLIST_FILE = Example/Info.plist;
1212
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
471
+ LD_RUNPATH_SEARCH_PATHS = (
472
+ "$(inherited)",
473
+ "@executable_path/Frameworks",
474
+ );
475
+ MARKETING_VERSION = 1.0;
1213
476
  OTHER_LDFLAGS = (
1214
477
  "$(inherited)",
1215
478
  "-ObjC",
@@ -1217,17 +480,25 @@
1217
480
  );
1218
481
  PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
1219
482
  PRODUCT_NAME = Example;
483
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
484
+ SWIFT_VERSION = 5.0;
1220
485
  VERSIONING_SYSTEM = "apple-generic";
1221
486
  };
1222
487
  name = Debug;
1223
488
  };
1224
489
  13B07F951A680F5B00A75B9A /* Release */ = {
1225
490
  isa = XCBuildConfiguration;
491
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-Example.release.xcconfig */;
1226
492
  buildSettings = {
1227
493
  ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
494
+ CLANG_ENABLE_MODULES = YES;
1228
495
  CURRENT_PROJECT_VERSION = 1;
1229
496
  INFOPLIST_FILE = Example/Info.plist;
1230
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
497
+ LD_RUNPATH_SEARCH_PATHS = (
498
+ "$(inherited)",
499
+ "@executable_path/Frameworks",
500
+ );
501
+ MARKETING_VERSION = 1.0;
1231
502
  OTHER_LDFLAGS = (
1232
503
  "$(inherited)",
1233
504
  "-ObjC",
@@ -1235,117 +506,17 @@
1235
506
  );
1236
507
  PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
1237
508
  PRODUCT_NAME = Example;
509
+ SWIFT_VERSION = 5.0;
1238
510
  VERSIONING_SYSTEM = "apple-generic";
1239
511
  };
1240
512
  name = Release;
1241
513
  };
1242
- 2D02E4971E0B4A5E006451C7 /* Debug */ = {
1243
- isa = XCBuildConfiguration;
1244
- buildSettings = {
1245
- ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1246
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1247
- CLANG_ANALYZER_NONNULL = YES;
1248
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1249
- CLANG_WARN_INFINITE_RECURSION = YES;
1250
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
1251
- DEBUG_INFORMATION_FORMAT = dwarf;
1252
- ENABLE_TESTABILITY = YES;
1253
- GCC_NO_COMMON_BLOCKS = YES;
1254
- INFOPLIST_FILE = "Example-tvOS/Info.plist";
1255
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1256
- OTHER_LDFLAGS = (
1257
- "-ObjC",
1258
- "-lc++",
1259
- );
1260
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Example-tvOS";
1261
- PRODUCT_NAME = "$(TARGET_NAME)";
1262
- SDKROOT = appletvos;
1263
- TARGETED_DEVICE_FAMILY = 3;
1264
- TVOS_DEPLOYMENT_TARGET = 9.2;
1265
- };
1266
- name = Debug;
1267
- };
1268
- 2D02E4981E0B4A5E006451C7 /* Release */ = {
1269
- isa = XCBuildConfiguration;
1270
- buildSettings = {
1271
- ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1272
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1273
- CLANG_ANALYZER_NONNULL = YES;
1274
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1275
- CLANG_WARN_INFINITE_RECURSION = YES;
1276
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
1277
- COPY_PHASE_STRIP = NO;
1278
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1279
- GCC_NO_COMMON_BLOCKS = YES;
1280
- INFOPLIST_FILE = "Example-tvOS/Info.plist";
1281
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1282
- OTHER_LDFLAGS = (
1283
- "-ObjC",
1284
- "-lc++",
1285
- );
1286
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Example-tvOS";
1287
- PRODUCT_NAME = "$(TARGET_NAME)";
1288
- SDKROOT = appletvos;
1289
- TARGETED_DEVICE_FAMILY = 3;
1290
- TVOS_DEPLOYMENT_TARGET = 9.2;
1291
- };
1292
- name = Release;
1293
- };
1294
- 2D02E4991E0B4A5E006451C7 /* Debug */ = {
1295
- isa = XCBuildConfiguration;
1296
- buildSettings = {
1297
- BUNDLE_LOADER = "$(TEST_HOST)";
1298
- CLANG_ANALYZER_NONNULL = YES;
1299
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1300
- CLANG_WARN_INFINITE_RECURSION = YES;
1301
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
1302
- DEBUG_INFORMATION_FORMAT = dwarf;
1303
- ENABLE_TESTABILITY = YES;
1304
- GCC_NO_COMMON_BLOCKS = YES;
1305
- INFOPLIST_FILE = "Example-tvOSTests/Info.plist";
1306
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1307
- OTHER_LDFLAGS = (
1308
- "-ObjC",
1309
- "-lc++",
1310
- );
1311
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Example-tvOSTests";
1312
- PRODUCT_NAME = "$(TARGET_NAME)";
1313
- SDKROOT = appletvos;
1314
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Example-tvOS.app/Example-tvOS";
1315
- TVOS_DEPLOYMENT_TARGET = 10.1;
1316
- };
1317
- name = Debug;
1318
- };
1319
- 2D02E49A1E0B4A5E006451C7 /* Release */ = {
1320
- isa = XCBuildConfiguration;
1321
- buildSettings = {
1322
- BUNDLE_LOADER = "$(TEST_HOST)";
1323
- CLANG_ANALYZER_NONNULL = YES;
1324
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1325
- CLANG_WARN_INFINITE_RECURSION = YES;
1326
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
1327
- COPY_PHASE_STRIP = NO;
1328
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1329
- GCC_NO_COMMON_BLOCKS = YES;
1330
- INFOPLIST_FILE = "Example-tvOSTests/Info.plist";
1331
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1332
- OTHER_LDFLAGS = (
1333
- "-ObjC",
1334
- "-lc++",
1335
- );
1336
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.Example-tvOSTests";
1337
- PRODUCT_NAME = "$(TARGET_NAME)";
1338
- SDKROOT = appletvos;
1339
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Example-tvOS.app/Example-tvOS";
1340
- TVOS_DEPLOYMENT_TARGET = 10.1;
1341
- };
1342
- name = Release;
1343
- };
1344
514
  83CBBA201A601CBA00E9B192 /* Debug */ = {
1345
515
  isa = XCBuildConfiguration;
1346
516
  buildSettings = {
1347
517
  ALWAYS_SEARCH_USER_PATHS = NO;
1348
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
518
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
519
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
1349
520
  CLANG_CXX_LIBRARY = "libc++";
1350
521
  CLANG_ENABLE_MODULES = YES;
1351
522
  CLANG_ENABLE_OBJC_ARC = YES;
@@ -1363,6 +534,7 @@
1363
534
  CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
1364
535
  CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
1365
536
  CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
537
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
1366
538
  CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1367
539
  CLANG_WARN_STRICT_PROTOTYPES = YES;
1368
540
  CLANG_WARN_SUSPICIOUS_MOVE = YES;
@@ -1372,6 +544,7 @@
1372
544
  COPY_PHASE_STRIP = NO;
1373
545
  ENABLE_STRICT_OBJC_MSGSEND = YES;
1374
546
  ENABLE_TESTABILITY = YES;
547
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
1375
548
  GCC_C_LANGUAGE_STANDARD = gnu99;
1376
549
  GCC_DYNAMIC_NO_PIC = NO;
1377
550
  GCC_NO_COMMON_BLOCKS = YES;
@@ -1387,10 +560,38 @@
1387
560
  GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1388
561
  GCC_WARN_UNUSED_FUNCTION = YES;
1389
562
  GCC_WARN_UNUSED_VARIABLE = YES;
1390
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
563
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
564
+ LD_RUNPATH_SEARCH_PATHS = (
565
+ /usr/lib/swift,
566
+ "$(inherited)",
567
+ );
568
+ LIBRARY_SEARCH_PATHS = (
569
+ "\"$(SDKROOT)/usr/lib/swift\"",
570
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
571
+ "\"$(inherited)\"",
572
+ );
1391
573
  MTL_ENABLE_DEBUG_INFO = YES;
1392
574
  ONLY_ACTIVE_ARCH = YES;
575
+ OTHER_CFLAGS = (
576
+ "$(inherited)",
577
+ "-DRN_FABRIC_ENABLED",
578
+ );
579
+ OTHER_CPLUSPLUSFLAGS = (
580
+ "$(OTHER_CFLAGS)",
581
+ "-DFOLLY_NO_CONFIG",
582
+ "-DFOLLY_MOBILE=1",
583
+ "-DFOLLY_USE_LIBCPP=1",
584
+ "-DFOLLY_CFG_NO_COROUTINES=1",
585
+ "-DRN_FABRIC_ENABLED",
586
+ );
587
+ OTHER_LDFLAGS = (
588
+ "$(inherited)",
589
+ "-Wl",
590
+ "-ld_classic",
591
+ );
592
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
1393
593
  SDKROOT = iphoneos;
594
+ USE_HERMES = true;
1394
595
  };
1395
596
  name = Debug;
1396
597
  };
@@ -1398,7 +599,8 @@
1398
599
  isa = XCBuildConfiguration;
1399
600
  buildSettings = {
1400
601
  ALWAYS_SEARCH_USER_PATHS = NO;
1401
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
602
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
603
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
1402
604
  CLANG_CXX_LIBRARY = "libc++";
1403
605
  CLANG_ENABLE_MODULES = YES;
1404
606
  CLANG_ENABLE_OBJC_ARC = YES;
@@ -1416,6 +618,7 @@
1416
618
  CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
1417
619
  CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
1418
620
  CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
621
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
1419
622
  CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
1420
623
  CLANG_WARN_STRICT_PROTOTYPES = YES;
1421
624
  CLANG_WARN_SUSPICIOUS_MOVE = YES;
@@ -1425,6 +628,7 @@
1425
628
  COPY_PHASE_STRIP = YES;
1426
629
  ENABLE_NS_ASSERTIONS = NO;
1427
630
  ENABLE_STRICT_OBJC_MSGSEND = YES;
631
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
1428
632
  GCC_C_LANGUAGE_STANDARD = gnu99;
1429
633
  GCC_NO_COMMON_BLOCKS = YES;
1430
634
  GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
@@ -1433,9 +637,37 @@
1433
637
  GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1434
638
  GCC_WARN_UNUSED_FUNCTION = YES;
1435
639
  GCC_WARN_UNUSED_VARIABLE = YES;
1436
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
640
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
641
+ LD_RUNPATH_SEARCH_PATHS = (
642
+ /usr/lib/swift,
643
+ "$(inherited)",
644
+ );
645
+ LIBRARY_SEARCH_PATHS = (
646
+ "\"$(SDKROOT)/usr/lib/swift\"",
647
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
648
+ "\"$(inherited)\"",
649
+ );
1437
650
  MTL_ENABLE_DEBUG_INFO = NO;
651
+ OTHER_CFLAGS = (
652
+ "$(inherited)",
653
+ "-DRN_FABRIC_ENABLED",
654
+ );
655
+ OTHER_CPLUSPLUSFLAGS = (
656
+ "$(OTHER_CFLAGS)",
657
+ "-DFOLLY_NO_CONFIG",
658
+ "-DFOLLY_MOBILE=1",
659
+ "-DFOLLY_USE_LIBCPP=1",
660
+ "-DFOLLY_CFG_NO_COROUTINES=1",
661
+ "-DRN_FABRIC_ENABLED",
662
+ );
663
+ OTHER_LDFLAGS = (
664
+ "$(inherited)",
665
+ "-Wl",
666
+ "-ld_classic",
667
+ );
668
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
1438
669
  SDKROOT = iphoneos;
670
+ USE_HERMES = true;
1439
671
  VALIDATE_PRODUCT = YES;
1440
672
  };
1441
673
  name = Release;
@@ -1461,24 +693,6 @@
1461
693
  defaultConfigurationIsVisible = 0;
1462
694
  defaultConfigurationName = Release;
1463
695
  };
1464
- 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Example-tvOS" */ = {
1465
- isa = XCConfigurationList;
1466
- buildConfigurations = (
1467
- 2D02E4971E0B4A5E006451C7 /* Debug */,
1468
- 2D02E4981E0B4A5E006451C7 /* Release */,
1469
- );
1470
- defaultConfigurationIsVisible = 0;
1471
- defaultConfigurationName = Release;
1472
- };
1473
- 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "Example-tvOSTests" */ = {
1474
- isa = XCConfigurationList;
1475
- buildConfigurations = (
1476
- 2D02E4991E0B4A5E006451C7 /* Debug */,
1477
- 2D02E49A1E0B4A5E006451C7 /* Release */,
1478
- );
1479
- defaultConfigurationIsVisible = 0;
1480
- defaultConfigurationName = Release;
1481
- };
1482
696
  83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "Example" */ = {
1483
697
  isa = XCConfigurationList;
1484
698
  buildConfigurations = (