reactnative-plugin-appice 1.7.13 → 1.7.14

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 (106) hide show
  1. package/README.md +37 -37
  2. package/android/README.md +14 -14
  3. package/android/build.gradle +151 -151
  4. package/android/gitignore +47 -47
  5. package/android/gradle/wrapper/gradle-wrapper.properties +5 -5
  6. package/android/gradlew +234 -234
  7. package/android/local.properties +8 -8
  8. package/android/src/main/AndroidManifest.xml +153 -153
  9. package/android/src/main/java/com/reactlibrary/AppICEUtils.java +241 -241
  10. package/android/src/main/java/com/reactlibrary/AppIceReactPluginModule.java +748 -748
  11. package/android/src/main/java/com/reactlibrary/AppIceReactPluginPackage.java +28 -28
  12. package/android/src/main/java/com/reactlibrary/CampaignCampsReceiver.java +56 -56
  13. package/android/src/main/java/com/reactlibrary/EnumConstants.java +256 -256
  14. package/android/src/main/java/com/reactlibrary/NotificationEventService.java +59 -59
  15. package/android/src/main/java/com/reactlibrary/StringConstants.java +9 -9
  16. package/example/App.js +292 -283
  17. package/example/Gemfile +6 -6
  18. package/example/__tests__/App-test.js +14 -14
  19. package/example/ancilliary.js +474 -327
  20. package/example/android/.gradle/7.3.3/checksums/checksums.lock +0 -0
  21. package/example/android/.gradle/7.3.3/fileChanges/last-build.bin +0 -0
  22. package/example/android/.gradle/7.3.3/fileHashes/fileHashes.lock +0 -0
  23. package/example/android/.gradle/7.3.3/gc.properties +0 -0
  24. package/example/android/.gradle/vcs-1/gc.properties +0 -0
  25. package/example/android/app/_BUCK +55 -55
  26. package/example/android/app/build.gradle +320 -320
  27. package/example/android/app/build_defs.bzl +19 -19
  28. package/example/android/app/proguard-rules.pro +10 -10
  29. package/example/android/app/src/debug/AndroidManifest.xml +13 -13
  30. package/example/android/app/src/debug/java/com/example/ReactNativeFlipper.java +73 -73
  31. package/example/android/app/src/main/AndroidManifest.xml +72 -72
  32. package/example/android/app/src/main/java/com/example/MainActivity.java +48 -48
  33. package/example/android/app/src/main/java/com/example/MainApplication.java +91 -91
  34. package/example/android/app/src/main/java/com/example/newarchitecture/MainApplicationReactNativeHost.java +116 -116
  35. package/example/android/app/src/main/java/com/example/newarchitecture/components/MainComponentsRegistry.java +36 -36
  36. package/example/android/app/src/main/java/com/example/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java +48 -48
  37. package/example/android/app/src/main/jni/Android.mk +48 -48
  38. package/example/android/app/src/main/jni/MainApplicationModuleProvider.cpp +24 -24
  39. package/example/android/app/src/main/jni/MainApplicationModuleProvider.h +16 -16
  40. package/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp +45 -45
  41. package/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h +38 -38
  42. package/example/android/app/src/main/jni/MainComponentsRegistry.cpp +61 -61
  43. package/example/android/app/src/main/jni/MainComponentsRegistry.h +32 -32
  44. package/example/android/app/src/main/jni/OnLoad.cpp +11 -11
  45. package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -36
  46. package/example/android/app/src/main/res/values/strings.xml +3 -3
  47. package/example/android/app/src/main/res/values/styles.xml +9 -9
  48. package/example/android/build.gradle +73 -73
  49. package/example/android/gradle/wrapper/gradle-wrapper.properties +5 -5
  50. package/example/android/gradle.properties +40 -40
  51. package/example/android/gradlew +234 -234
  52. package/example/android/settings.gradle +11 -11
  53. package/example/app.json +3 -3
  54. package/example/babel.config.js +3 -3
  55. package/example/index.js +9 -9
  56. package/example/ios/Podfile +44 -44
  57. package/example/ios/Podfile.lock +561 -561
  58. package/example/ios/_xcode.env +11 -11
  59. package/example/ios/example/AppDelegate.h +8 -8
  60. package/example/ios/example/AppDelegate.mm +174 -174
  61. package/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json +53 -53
  62. package/example/ios/example/Images.xcassets/Contents.json +6 -6
  63. package/example/ios/example/Info.plist +62 -62
  64. package/example/ios/example/LaunchScreen.storyboard +47 -47
  65. package/example/ios/example/example.entitlements +8 -8
  66. package/example/ios/example/main.m +10 -10
  67. package/example/ios/example.xcodeproj/project.pbxproj +712 -712
  68. package/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme +88 -88
  69. package/example/ios/example.xcworkspace/contents.xcworkspacedata +10 -10
  70. package/example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  71. package/example/ios/exampleTests/Info.plist +24 -24
  72. package/example/ios/exampleTests/exampleTests.m +66 -66
  73. package/example/metro.config.js +17 -17
  74. package/example/package.json +36 -34
  75. package/example/yarn.lock +7176 -7176
  76. package/index.js +485 -401
  77. package/ios/AppICEReactEvent.h +23 -23
  78. package/ios/AppICEReactEvent.m +86 -86
  79. package/ios/AppIceReactPlugin.h +59 -59
  80. package/ios/AppIceReactPlugin.m +641 -641
  81. package/ios/AppIceReactPlugin.xcodeproj/project.pbxproj +364 -364
  82. package/ios/AppIceReactPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata +4 -4
  83. package/ios/AppIceReactPlugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  84. package/ios/AppIceReactPlugin.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  85. package/ios/AppIceReactPlugin.xcodeproj/xcuserdata/artherajesh.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  86. package/ios/AppIceReactPlugin.xcworkspace/contents.xcworkspacedata +10 -10
  87. package/ios/AppIceReactPlugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  88. package/ios/AppIceReactPlugin.xcworkspace/xcuserdata/artherajesh.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  89. package/ios/Podfile +10 -10
  90. package/ios/Podfile.lock +3 -3
  91. package/ios/Pods/Manifest.lock +3 -3
  92. package/ios/Pods/Pods.xcodeproj/project.pbxproj +395 -395
  93. package/ios/Pods/Pods.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/Pods-AppIceReactPlugin.xcscheme +58 -58
  94. package/ios/Pods/Pods.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/xcschememanagement.plist +18 -18
  95. package/ios/Pods/Pods.xcodeproj/xcuserdata/artherajesh.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  96. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-Info.plist +26 -26
  97. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-acknowledgements.markdown +3 -3
  98. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-acknowledgements.plist +29 -29
  99. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-dummy.m +5 -5
  100. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-umbrella.h +16 -16
  101. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.debug.xcconfig +6 -6
  102. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.modulemap +6 -6
  103. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.release.xcconfig +6 -6
  104. package/package.json +41 -40
  105. package/reactnative-plugin-appice.podspec +30 -30
  106. package/example/android/local.properties +0 -8
@@ -1,712 +1,712 @@
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
- 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
12
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13
- 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
14
- 57F328F1B960F4880F603061 /* libPods-example-exampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 317AA32CDD56312572C0BD2F /* libPods-example-exampleTests.a */; };
15
- 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
16
- C427EB47831667C91E925304 /* libPods-example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5BAD516B0468BD94C86D290C /* libPods-example.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.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = example/AppDelegate.mm; 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
- 317AA32CDD56312572C0BD2F /* libPods-example-exampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example-exampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
40
- 49521CFF28B9F66A95CF9850 /* 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>"; };
41
- 5BAD516B0468BD94C86D290C /* libPods-example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
42
- 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = example/LaunchScreen.storyboard; sourceTree = "<group>"; };
43
- 896A0A0228A2436900CB9DEA /* example.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = example.entitlements; path = example/example.entitlements; sourceTree = "<group>"; };
44
- 8FDABF19B58DEE786E28A35E /* 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>"; };
45
- C6E9B2B57F84CDAB156CCB5D /* 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>"; };
46
- D64897B8D73D76841AAA3380 /* 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>"; };
47
- ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
48
- /* End PBXFileReference section */
49
-
50
- /* Begin PBXFrameworksBuildPhase section */
51
- 00E356EB1AD99517003FC87E /* Frameworks */ = {
52
- isa = PBXFrameworksBuildPhase;
53
- buildActionMask = 2147483647;
54
- files = (
55
- 57F328F1B960F4880F603061 /* libPods-example-exampleTests.a in Frameworks */,
56
- );
57
- runOnlyForDeploymentPostprocessing = 0;
58
- };
59
- 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
60
- isa = PBXFrameworksBuildPhase;
61
- buildActionMask = 2147483647;
62
- files = (
63
- C427EB47831667C91E925304 /* libPods-example.a in Frameworks */,
64
- );
65
- runOnlyForDeploymentPostprocessing = 0;
66
- };
67
- /* End PBXFrameworksBuildPhase section */
68
-
69
- /* Begin PBXGroup section */
70
- 00E356EF1AD99517003FC87E /* exampleTests */ = {
71
- isa = PBXGroup;
72
- children = (
73
- 00E356F21AD99517003FC87E /* exampleTests.m */,
74
- 00E356F01AD99517003FC87E /* Supporting Files */,
75
- );
76
- path = exampleTests;
77
- sourceTree = "<group>";
78
- };
79
- 00E356F01AD99517003FC87E /* Supporting Files */ = {
80
- isa = PBXGroup;
81
- children = (
82
- 00E356F11AD99517003FC87E /* Info.plist */,
83
- );
84
- name = "Supporting Files";
85
- sourceTree = "<group>";
86
- };
87
- 13B07FAE1A68108700A75B9A /* example */ = {
88
- isa = PBXGroup;
89
- children = (
90
- 896A0A0228A2436900CB9DEA /* example.entitlements */,
91
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
92
- 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
93
- 13B07FB51A68108700A75B9A /* Images.xcassets */,
94
- 13B07FB61A68108700A75B9A /* Info.plist */,
95
- 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
96
- 13B07FB71A68108700A75B9A /* main.m */,
97
- );
98
- name = example;
99
- sourceTree = "<group>";
100
- };
101
- 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
102
- isa = PBXGroup;
103
- children = (
104
- ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
105
- 5BAD516B0468BD94C86D290C /* libPods-example.a */,
106
- 317AA32CDD56312572C0BD2F /* libPods-example-exampleTests.a */,
107
- );
108
- name = Frameworks;
109
- sourceTree = "<group>";
110
- };
111
- 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
112
- isa = PBXGroup;
113
- children = (
114
- );
115
- name = Libraries;
116
- sourceTree = "<group>";
117
- };
118
- 83CBB9F61A601CBA00E9B192 = {
119
- isa = PBXGroup;
120
- children = (
121
- 13B07FAE1A68108700A75B9A /* example */,
122
- 832341AE1AAA6A7D00B99B32 /* Libraries */,
123
- 00E356EF1AD99517003FC87E /* exampleTests */,
124
- 83CBBA001A601CBA00E9B192 /* Products */,
125
- 2D16E6871FA4F8E400B85C8A /* Frameworks */,
126
- BBD78D7AC51CEA395F1C20DB /* Pods */,
127
- );
128
- indentWidth = 2;
129
- sourceTree = "<group>";
130
- tabWidth = 2;
131
- usesTabs = 0;
132
- };
133
- 83CBBA001A601CBA00E9B192 /* Products */ = {
134
- isa = PBXGroup;
135
- children = (
136
- 13B07F961A680F5B00A75B9A /* example.app */,
137
- 00E356EE1AD99517003FC87E /* exampleTests.xctest */,
138
- );
139
- name = Products;
140
- sourceTree = "<group>";
141
- };
142
- BBD78D7AC51CEA395F1C20DB /* Pods */ = {
143
- isa = PBXGroup;
144
- children = (
145
- C6E9B2B57F84CDAB156CCB5D /* Pods-example.debug.xcconfig */,
146
- D64897B8D73D76841AAA3380 /* Pods-example.release.xcconfig */,
147
- 49521CFF28B9F66A95CF9850 /* Pods-example-exampleTests.debug.xcconfig */,
148
- 8FDABF19B58DEE786E28A35E /* Pods-example-exampleTests.release.xcconfig */,
149
- );
150
- path = Pods;
151
- sourceTree = "<group>";
152
- };
153
- /* End PBXGroup section */
154
-
155
- /* Begin PBXNativeTarget section */
156
- 00E356ED1AD99517003FC87E /* exampleTests */ = {
157
- isa = PBXNativeTarget;
158
- buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */;
159
- buildPhases = (
160
- 0C04DA8F39AA031B097F3BB8 /* [CP] Check Pods Manifest.lock */,
161
- 00E356EA1AD99517003FC87E /* Sources */,
162
- 00E356EB1AD99517003FC87E /* Frameworks */,
163
- 00E356EC1AD99517003FC87E /* Resources */,
164
- 4A681E4207DF69BF32EDB988 /* [CP] Embed Pods Frameworks */,
165
- A1EE931B3EA2A7373C889B39 /* [CP] Copy Pods Resources */,
166
- );
167
- buildRules = (
168
- );
169
- dependencies = (
170
- 00E356F51AD99517003FC87E /* PBXTargetDependency */,
171
- );
172
- name = exampleTests;
173
- productName = exampleTests;
174
- productReference = 00E356EE1AD99517003FC87E /* exampleTests.xctest */;
175
- productType = "com.apple.product-type.bundle.unit-test";
176
- };
177
- 13B07F861A680F5B00A75B9A /* example */ = {
178
- isa = PBXNativeTarget;
179
- buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */;
180
- buildPhases = (
181
- E0ED29639950E49808B0AD14 /* [CP] Check Pods Manifest.lock */,
182
- FD10A7F022414F080027D42C /* Start Packager */,
183
- 13B07F871A680F5B00A75B9A /* Sources */,
184
- 13B07F8C1A680F5B00A75B9A /* Frameworks */,
185
- 13B07F8E1A680F5B00A75B9A /* Resources */,
186
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
187
- 9713EECCD71005EAF5B0C4D3 /* [CP] Embed Pods Frameworks */,
188
- 9EC2B02430CAD42DE6B587C6 /* [CP] Copy Pods Resources */,
189
- );
190
- buildRules = (
191
- );
192
- dependencies = (
193
- );
194
- name = example;
195
- productName = example;
196
- productReference = 13B07F961A680F5B00A75B9A /* example.app */;
197
- productType = "com.apple.product-type.application";
198
- };
199
- /* End PBXNativeTarget section */
200
-
201
- /* Begin PBXProject section */
202
- 83CBB9F71A601CBA00E9B192 /* Project object */ = {
203
- isa = PBXProject;
204
- attributes = {
205
- LastUpgradeCheck = 1210;
206
- TargetAttributes = {
207
- 00E356ED1AD99517003FC87E = {
208
- CreatedOnToolsVersion = 6.2;
209
- TestTargetID = 13B07F861A680F5B00A75B9A;
210
- };
211
- 13B07F861A680F5B00A75B9A = {
212
- LastSwiftMigration = 1120;
213
- };
214
- };
215
- };
216
- buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */;
217
- compatibilityVersion = "Xcode 12.0";
218
- developmentRegion = en;
219
- hasScannedForEncodings = 0;
220
- knownRegions = (
221
- en,
222
- Base,
223
- );
224
- mainGroup = 83CBB9F61A601CBA00E9B192;
225
- productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
226
- projectDirPath = "";
227
- projectRoot = "";
228
- targets = (
229
- 13B07F861A680F5B00A75B9A /* example */,
230
- 00E356ED1AD99517003FC87E /* exampleTests */,
231
- );
232
- };
233
- /* End PBXProject section */
234
-
235
- /* Begin PBXResourcesBuildPhase section */
236
- 00E356EC1AD99517003FC87E /* Resources */ = {
237
- isa = PBXResourcesBuildPhase;
238
- buildActionMask = 2147483647;
239
- files = (
240
- );
241
- runOnlyForDeploymentPostprocessing = 0;
242
- };
243
- 13B07F8E1A680F5B00A75B9A /* Resources */ = {
244
- isa = PBXResourcesBuildPhase;
245
- buildActionMask = 2147483647;
246
- files = (
247
- 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
248
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
249
- );
250
- runOnlyForDeploymentPostprocessing = 0;
251
- };
252
- /* End PBXResourcesBuildPhase section */
253
-
254
- /* Begin PBXShellScriptBuildPhase section */
255
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
256
- isa = PBXShellScriptBuildPhase;
257
- buildActionMask = 2147483647;
258
- files = (
259
- );
260
- inputPaths = (
261
- "$(SRCROOT)/.xcode.env.local",
262
- "$(SRCROOT)/.xcode.env",
263
- );
264
- name = "Bundle React Native code and images";
265
- outputPaths = (
266
- );
267
- runOnlyForDeploymentPostprocessing = 0;
268
- shellPath = /bin/sh;
269
- 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";
270
- };
271
- 0C04DA8F39AA031B097F3BB8 /* [CP] Check Pods Manifest.lock */ = {
272
- isa = PBXShellScriptBuildPhase;
273
- buildActionMask = 2147483647;
274
- files = (
275
- );
276
- inputFileListPaths = (
277
- );
278
- inputPaths = (
279
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
280
- "${PODS_ROOT}/Manifest.lock",
281
- );
282
- name = "[CP] Check Pods Manifest.lock";
283
- outputFileListPaths = (
284
- );
285
- outputPaths = (
286
- "$(DERIVED_FILE_DIR)/Pods-example-exampleTests-checkManifestLockResult.txt",
287
- );
288
- runOnlyForDeploymentPostprocessing = 0;
289
- shellPath = /bin/sh;
290
- 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";
291
- showEnvVarsInLog = 0;
292
- };
293
- 4A681E4207DF69BF32EDB988 /* [CP] Embed Pods Frameworks */ = {
294
- isa = PBXShellScriptBuildPhase;
295
- buildActionMask = 2147483647;
296
- files = (
297
- );
298
- inputFileListPaths = (
299
- "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
300
- );
301
- name = "[CP] Embed Pods Frameworks";
302
- outputFileListPaths = (
303
- "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
304
- );
305
- runOnlyForDeploymentPostprocessing = 0;
306
- shellPath = /bin/sh;
307
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks.sh\"\n";
308
- showEnvVarsInLog = 0;
309
- };
310
- 9713EECCD71005EAF5B0C4D3 /* [CP] Embed Pods Frameworks */ = {
311
- isa = PBXShellScriptBuildPhase;
312
- buildActionMask = 2147483647;
313
- files = (
314
- );
315
- inputFileListPaths = (
316
- "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-input-files.xcfilelist",
317
- );
318
- name = "[CP] Embed Pods Frameworks";
319
- outputFileListPaths = (
320
- "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-output-files.xcfilelist",
321
- );
322
- runOnlyForDeploymentPostprocessing = 0;
323
- shellPath = /bin/sh;
324
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks.sh\"\n";
325
- showEnvVarsInLog = 0;
326
- };
327
- 9EC2B02430CAD42DE6B587C6 /* [CP] Copy Pods Resources */ = {
328
- isa = PBXShellScriptBuildPhase;
329
- buildActionMask = 2147483647;
330
- files = (
331
- );
332
- inputFileListPaths = (
333
- "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-input-files.xcfilelist",
334
- );
335
- name = "[CP] Copy Pods Resources";
336
- outputFileListPaths = (
337
- "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-output-files.xcfilelist",
338
- );
339
- runOnlyForDeploymentPostprocessing = 0;
340
- shellPath = /bin/sh;
341
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources.sh\"\n";
342
- showEnvVarsInLog = 0;
343
- };
344
- A1EE931B3EA2A7373C889B39 /* [CP] Copy Pods Resources */ = {
345
- isa = PBXShellScriptBuildPhase;
346
- buildActionMask = 2147483647;
347
- files = (
348
- );
349
- inputFileListPaths = (
350
- "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
351
- );
352
- name = "[CP] Copy Pods Resources";
353
- outputFileListPaths = (
354
- "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
355
- );
356
- runOnlyForDeploymentPostprocessing = 0;
357
- shellPath = /bin/sh;
358
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources.sh\"\n";
359
- showEnvVarsInLog = 0;
360
- };
361
- E0ED29639950E49808B0AD14 /* [CP] Check Pods Manifest.lock */ = {
362
- isa = PBXShellScriptBuildPhase;
363
- buildActionMask = 2147483647;
364
- files = (
365
- );
366
- inputFileListPaths = (
367
- );
368
- inputPaths = (
369
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
370
- "${PODS_ROOT}/Manifest.lock",
371
- );
372
- name = "[CP] Check Pods Manifest.lock";
373
- outputFileListPaths = (
374
- );
375
- outputPaths = (
376
- "$(DERIVED_FILE_DIR)/Pods-example-checkManifestLockResult.txt",
377
- );
378
- runOnlyForDeploymentPostprocessing = 0;
379
- shellPath = /bin/sh;
380
- 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";
381
- showEnvVarsInLog = 0;
382
- };
383
- FD10A7F022414F080027D42C /* Start Packager */ = {
384
- isa = PBXShellScriptBuildPhase;
385
- buildActionMask = 2147483647;
386
- files = (
387
- );
388
- inputFileListPaths = (
389
- );
390
- inputPaths = (
391
- );
392
- name = "Start Packager";
393
- outputFileListPaths = (
394
- );
395
- outputPaths = (
396
- );
397
- runOnlyForDeploymentPostprocessing = 0;
398
- shellPath = /bin/sh;
399
- 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";
400
- showEnvVarsInLog = 0;
401
- };
402
- /* End PBXShellScriptBuildPhase section */
403
-
404
- /* Begin PBXSourcesBuildPhase section */
405
- 00E356EA1AD99517003FC87E /* Sources */ = {
406
- isa = PBXSourcesBuildPhase;
407
- buildActionMask = 2147483647;
408
- files = (
409
- 00E356F31AD99517003FC87E /* exampleTests.m in Sources */,
410
- );
411
- runOnlyForDeploymentPostprocessing = 0;
412
- };
413
- 13B07F871A680F5B00A75B9A /* Sources */ = {
414
- isa = PBXSourcesBuildPhase;
415
- buildActionMask = 2147483647;
416
- files = (
417
- 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
418
- 13B07FC11A68108700A75B9A /* main.m in Sources */,
419
- );
420
- runOnlyForDeploymentPostprocessing = 0;
421
- };
422
- /* End PBXSourcesBuildPhase section */
423
-
424
- /* Begin PBXTargetDependency section */
425
- 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
426
- isa = PBXTargetDependency;
427
- target = 13B07F861A680F5B00A75B9A /* example */;
428
- targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
429
- };
430
- /* End PBXTargetDependency section */
431
-
432
- /* Begin XCBuildConfiguration section */
433
- 00E356F61AD99517003FC87E /* Debug */ = {
434
- isa = XCBuildConfiguration;
435
- baseConfigurationReference = 49521CFF28B9F66A95CF9850 /* Pods-example-exampleTests.debug.xcconfig */;
436
- buildSettings = {
437
- BUNDLE_LOADER = "$(TEST_HOST)";
438
- GCC_PREPROCESSOR_DEFINITIONS = (
439
- "DEBUG=1",
440
- "$(inherited)",
441
- );
442
- INFOPLIST_FILE = exampleTests/Info.plist;
443
- IPHONEOS_DEPLOYMENT_TARGET = 12.4;
444
- LD_RUNPATH_SEARCH_PATHS = (
445
- "$(inherited)",
446
- "@executable_path/Frameworks",
447
- "@loader_path/Frameworks",
448
- );
449
- OTHER_LDFLAGS = (
450
- "-ObjC",
451
- "-lc++",
452
- "$(inherited)",
453
- );
454
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
455
- PRODUCT_NAME = "$(TARGET_NAME)";
456
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
457
- };
458
- name = Debug;
459
- };
460
- 00E356F71AD99517003FC87E /* Release */ = {
461
- isa = XCBuildConfiguration;
462
- baseConfigurationReference = 8FDABF19B58DEE786E28A35E /* Pods-example-exampleTests.release.xcconfig */;
463
- buildSettings = {
464
- BUNDLE_LOADER = "$(TEST_HOST)";
465
- COPY_PHASE_STRIP = NO;
466
- INFOPLIST_FILE = exampleTests/Info.plist;
467
- IPHONEOS_DEPLOYMENT_TARGET = 12.4;
468
- LD_RUNPATH_SEARCH_PATHS = (
469
- "$(inherited)",
470
- "@executable_path/Frameworks",
471
- "@loader_path/Frameworks",
472
- );
473
- OTHER_LDFLAGS = (
474
- "-ObjC",
475
- "-lc++",
476
- "$(inherited)",
477
- );
478
- PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
479
- PRODUCT_NAME = "$(TARGET_NAME)";
480
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
481
- };
482
- name = Release;
483
- };
484
- 13B07F941A680F5B00A75B9A /* Debug */ = {
485
- isa = XCBuildConfiguration;
486
- baseConfigurationReference = C6E9B2B57F84CDAB156CCB5D /* Pods-example.debug.xcconfig */;
487
- buildSettings = {
488
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
489
- CLANG_ENABLE_MODULES = YES;
490
- CODE_SIGN_ENTITLEMENTS = example/example.entitlements;
491
- CODE_SIGN_STYLE = Manual;
492
- CURRENT_PROJECT_VERSION = 1;
493
- DEVELOPMENT_TEAM = 7C42LT37LT;
494
- ENABLE_BITCODE = NO;
495
- INFOPLIST_FILE = example/Info.plist;
496
- LD_RUNPATH_SEARCH_PATHS = (
497
- "$(inherited)",
498
- "@executable_path/Frameworks",
499
- );
500
- OTHER_LDFLAGS = (
501
- "$(inherited)",
502
- "-ObjC",
503
- "-lc++",
504
- );
505
- PRODUCT_BUNDLE_IDENTIFIER = com.appice.ios;
506
- PRODUCT_NAME = example;
507
- PROVISIONING_PROFILE_SPECIFIER = Development;
508
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
509
- SWIFT_VERSION = 5.0;
510
- VERSIONING_SYSTEM = "apple-generic";
511
- };
512
- name = Debug;
513
- };
514
- 13B07F951A680F5B00A75B9A /* Release */ = {
515
- isa = XCBuildConfiguration;
516
- baseConfigurationReference = D64897B8D73D76841AAA3380 /* Pods-example.release.xcconfig */;
517
- buildSettings = {
518
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
519
- CLANG_ENABLE_MODULES = YES;
520
- CODE_SIGN_ENTITLEMENTS = example/example.entitlements;
521
- CODE_SIGN_STYLE = Manual;
522
- CURRENT_PROJECT_VERSION = 1;
523
- DEVELOPMENT_TEAM = 7C42LT37LT;
524
- INFOPLIST_FILE = example/Info.plist;
525
- LD_RUNPATH_SEARCH_PATHS = (
526
- "$(inherited)",
527
- "@executable_path/Frameworks",
528
- );
529
- OTHER_LDFLAGS = (
530
- "$(inherited)",
531
- "-ObjC",
532
- "-lc++",
533
- );
534
- PRODUCT_BUNDLE_IDENTIFIER = com.appice.ios;
535
- PRODUCT_NAME = example;
536
- PROVISIONING_PROFILE_SPECIFIER = Development;
537
- SWIFT_VERSION = 5.0;
538
- VERSIONING_SYSTEM = "apple-generic";
539
- };
540
- name = Release;
541
- };
542
- 83CBBA201A601CBA00E9B192 /* Debug */ = {
543
- isa = XCBuildConfiguration;
544
- buildSettings = {
545
- ALWAYS_SEARCH_USER_PATHS = NO;
546
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
547
- CLANG_CXX_LANGUAGE_STANDARD = "c++17";
548
- CLANG_CXX_LIBRARY = "libc++";
549
- CLANG_ENABLE_MODULES = YES;
550
- CLANG_ENABLE_OBJC_ARC = YES;
551
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
552
- CLANG_WARN_BOOL_CONVERSION = YES;
553
- CLANG_WARN_COMMA = YES;
554
- CLANG_WARN_CONSTANT_CONVERSION = YES;
555
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
556
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
557
- CLANG_WARN_EMPTY_BODY = YES;
558
- CLANG_WARN_ENUM_CONVERSION = YES;
559
- CLANG_WARN_INFINITE_RECURSION = YES;
560
- CLANG_WARN_INT_CONVERSION = YES;
561
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
562
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
563
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
564
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
565
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
566
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
567
- CLANG_WARN_STRICT_PROTOTYPES = YES;
568
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
569
- CLANG_WARN_UNREACHABLE_CODE = YES;
570
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
571
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
572
- COPY_PHASE_STRIP = NO;
573
- ENABLE_STRICT_OBJC_MSGSEND = YES;
574
- ENABLE_TESTABILITY = YES;
575
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
576
- GCC_C_LANGUAGE_STANDARD = gnu99;
577
- GCC_DYNAMIC_NO_PIC = NO;
578
- GCC_NO_COMMON_BLOCKS = YES;
579
- GCC_OPTIMIZATION_LEVEL = 0;
580
- GCC_PREPROCESSOR_DEFINITIONS = (
581
- "DEBUG=1",
582
- "$(inherited)",
583
- );
584
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
585
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
586
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
587
- GCC_WARN_UNDECLARED_SELECTOR = YES;
588
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
589
- GCC_WARN_UNUSED_FUNCTION = YES;
590
- GCC_WARN_UNUSED_VARIABLE = YES;
591
- IPHONEOS_DEPLOYMENT_TARGET = 12.4;
592
- LD_RUNPATH_SEARCH_PATHS = (
593
- /usr/lib/swift,
594
- "$(inherited)",
595
- );
596
- LIBRARY_SEARCH_PATHS = (
597
- "\"$(SDKROOT)/usr/lib/swift\"",
598
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
599
- "\"$(inherited)\"",
600
- );
601
- MTL_ENABLE_DEBUG_INFO = YES;
602
- ONLY_ACTIVE_ARCH = YES;
603
- OTHER_CPLUSPLUSFLAGS = (
604
- "$(OTHER_CFLAGS)",
605
- "-DFOLLY_NO_CONFIG",
606
- "-DFOLLY_MOBILE=1",
607
- "-DFOLLY_USE_LIBCPP=1",
608
- );
609
- REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
610
- SDKROOT = iphoneos;
611
- };
612
- name = Debug;
613
- };
614
- 83CBBA211A601CBA00E9B192 /* Release */ = {
615
- isa = XCBuildConfiguration;
616
- buildSettings = {
617
- ALWAYS_SEARCH_USER_PATHS = NO;
618
- CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
619
- CLANG_CXX_LANGUAGE_STANDARD = "c++17";
620
- CLANG_CXX_LIBRARY = "libc++";
621
- CLANG_ENABLE_MODULES = YES;
622
- CLANG_ENABLE_OBJC_ARC = YES;
623
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
624
- CLANG_WARN_BOOL_CONVERSION = YES;
625
- CLANG_WARN_COMMA = YES;
626
- CLANG_WARN_CONSTANT_CONVERSION = YES;
627
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
628
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
629
- CLANG_WARN_EMPTY_BODY = YES;
630
- CLANG_WARN_ENUM_CONVERSION = YES;
631
- CLANG_WARN_INFINITE_RECURSION = YES;
632
- CLANG_WARN_INT_CONVERSION = YES;
633
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
634
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
635
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
636
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
637
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
638
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
639
- CLANG_WARN_STRICT_PROTOTYPES = YES;
640
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
641
- CLANG_WARN_UNREACHABLE_CODE = YES;
642
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
643
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
644
- COPY_PHASE_STRIP = YES;
645
- ENABLE_NS_ASSERTIONS = NO;
646
- ENABLE_STRICT_OBJC_MSGSEND = YES;
647
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
648
- GCC_C_LANGUAGE_STANDARD = gnu99;
649
- GCC_NO_COMMON_BLOCKS = YES;
650
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
651
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
652
- GCC_WARN_UNDECLARED_SELECTOR = YES;
653
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
654
- GCC_WARN_UNUSED_FUNCTION = YES;
655
- GCC_WARN_UNUSED_VARIABLE = YES;
656
- IPHONEOS_DEPLOYMENT_TARGET = 12.4;
657
- LD_RUNPATH_SEARCH_PATHS = (
658
- /usr/lib/swift,
659
- "$(inherited)",
660
- );
661
- LIBRARY_SEARCH_PATHS = (
662
- "\"$(SDKROOT)/usr/lib/swift\"",
663
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
664
- "\"$(inherited)\"",
665
- );
666
- MTL_ENABLE_DEBUG_INFO = NO;
667
- OTHER_CPLUSPLUSFLAGS = (
668
- "$(OTHER_CFLAGS)",
669
- "-DFOLLY_NO_CONFIG",
670
- "-DFOLLY_MOBILE=1",
671
- "-DFOLLY_USE_LIBCPP=1",
672
- );
673
- REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
674
- SDKROOT = iphoneos;
675
- VALIDATE_PRODUCT = YES;
676
- };
677
- name = Release;
678
- };
679
- /* End XCBuildConfiguration section */
680
-
681
- /* Begin XCConfigurationList section */
682
- 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */ = {
683
- isa = XCConfigurationList;
684
- buildConfigurations = (
685
- 00E356F61AD99517003FC87E /* Debug */,
686
- 00E356F71AD99517003FC87E /* Release */,
687
- );
688
- defaultConfigurationIsVisible = 0;
689
- defaultConfigurationName = Release;
690
- };
691
- 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = {
692
- isa = XCConfigurationList;
693
- buildConfigurations = (
694
- 13B07F941A680F5B00A75B9A /* Debug */,
695
- 13B07F951A680F5B00A75B9A /* Release */,
696
- );
697
- defaultConfigurationIsVisible = 0;
698
- defaultConfigurationName = Release;
699
- };
700
- 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */ = {
701
- isa = XCConfigurationList;
702
- buildConfigurations = (
703
- 83CBBA201A601CBA00E9B192 /* Debug */,
704
- 83CBBA211A601CBA00E9B192 /* Release */,
705
- );
706
- defaultConfigurationIsVisible = 0;
707
- defaultConfigurationName = Release;
708
- };
709
- /* End XCConfigurationList section */
710
- };
711
- rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
712
- }
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
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
12
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
13
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
14
+ 57F328F1B960F4880F603061 /* libPods-example-exampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 317AA32CDD56312572C0BD2F /* libPods-example-exampleTests.a */; };
15
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
16
+ C427EB47831667C91E925304 /* libPods-example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5BAD516B0468BD94C86D290C /* libPods-example.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.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = example/AppDelegate.mm; 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
+ 317AA32CDD56312572C0BD2F /* libPods-example-exampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example-exampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
40
+ 49521CFF28B9F66A95CF9850 /* 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>"; };
41
+ 5BAD516B0468BD94C86D290C /* libPods-example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-example.a"; sourceTree = BUILT_PRODUCTS_DIR; };
42
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = example/LaunchScreen.storyboard; sourceTree = "<group>"; };
43
+ 896A0A0228A2436900CB9DEA /* example.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = example.entitlements; path = example/example.entitlements; sourceTree = "<group>"; };
44
+ 8FDABF19B58DEE786E28A35E /* 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>"; };
45
+ C6E9B2B57F84CDAB156CCB5D /* 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>"; };
46
+ D64897B8D73D76841AAA3380 /* 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>"; };
47
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
48
+ /* End PBXFileReference section */
49
+
50
+ /* Begin PBXFrameworksBuildPhase section */
51
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
52
+ isa = PBXFrameworksBuildPhase;
53
+ buildActionMask = 2147483647;
54
+ files = (
55
+ 57F328F1B960F4880F603061 /* libPods-example-exampleTests.a in Frameworks */,
56
+ );
57
+ runOnlyForDeploymentPostprocessing = 0;
58
+ };
59
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
60
+ isa = PBXFrameworksBuildPhase;
61
+ buildActionMask = 2147483647;
62
+ files = (
63
+ C427EB47831667C91E925304 /* libPods-example.a in Frameworks */,
64
+ );
65
+ runOnlyForDeploymentPostprocessing = 0;
66
+ };
67
+ /* End PBXFrameworksBuildPhase section */
68
+
69
+ /* Begin PBXGroup section */
70
+ 00E356EF1AD99517003FC87E /* exampleTests */ = {
71
+ isa = PBXGroup;
72
+ children = (
73
+ 00E356F21AD99517003FC87E /* exampleTests.m */,
74
+ 00E356F01AD99517003FC87E /* Supporting Files */,
75
+ );
76
+ path = exampleTests;
77
+ sourceTree = "<group>";
78
+ };
79
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
80
+ isa = PBXGroup;
81
+ children = (
82
+ 00E356F11AD99517003FC87E /* Info.plist */,
83
+ );
84
+ name = "Supporting Files";
85
+ sourceTree = "<group>";
86
+ };
87
+ 13B07FAE1A68108700A75B9A /* example */ = {
88
+ isa = PBXGroup;
89
+ children = (
90
+ 896A0A0228A2436900CB9DEA /* example.entitlements */,
91
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
92
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
93
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
94
+ 13B07FB61A68108700A75B9A /* Info.plist */,
95
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
96
+ 13B07FB71A68108700A75B9A /* main.m */,
97
+ );
98
+ name = example;
99
+ sourceTree = "<group>";
100
+ };
101
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
102
+ isa = PBXGroup;
103
+ children = (
104
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
105
+ 5BAD516B0468BD94C86D290C /* libPods-example.a */,
106
+ 317AA32CDD56312572C0BD2F /* libPods-example-exampleTests.a */,
107
+ );
108
+ name = Frameworks;
109
+ sourceTree = "<group>";
110
+ };
111
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
112
+ isa = PBXGroup;
113
+ children = (
114
+ );
115
+ name = Libraries;
116
+ sourceTree = "<group>";
117
+ };
118
+ 83CBB9F61A601CBA00E9B192 = {
119
+ isa = PBXGroup;
120
+ children = (
121
+ 13B07FAE1A68108700A75B9A /* example */,
122
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
123
+ 00E356EF1AD99517003FC87E /* exampleTests */,
124
+ 83CBBA001A601CBA00E9B192 /* Products */,
125
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
126
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
127
+ );
128
+ indentWidth = 2;
129
+ sourceTree = "<group>";
130
+ tabWidth = 2;
131
+ usesTabs = 0;
132
+ };
133
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
134
+ isa = PBXGroup;
135
+ children = (
136
+ 13B07F961A680F5B00A75B9A /* example.app */,
137
+ 00E356EE1AD99517003FC87E /* exampleTests.xctest */,
138
+ );
139
+ name = Products;
140
+ sourceTree = "<group>";
141
+ };
142
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
143
+ isa = PBXGroup;
144
+ children = (
145
+ C6E9B2B57F84CDAB156CCB5D /* Pods-example.debug.xcconfig */,
146
+ D64897B8D73D76841AAA3380 /* Pods-example.release.xcconfig */,
147
+ 49521CFF28B9F66A95CF9850 /* Pods-example-exampleTests.debug.xcconfig */,
148
+ 8FDABF19B58DEE786E28A35E /* Pods-example-exampleTests.release.xcconfig */,
149
+ );
150
+ path = Pods;
151
+ sourceTree = "<group>";
152
+ };
153
+ /* End PBXGroup section */
154
+
155
+ /* Begin PBXNativeTarget section */
156
+ 00E356ED1AD99517003FC87E /* exampleTests */ = {
157
+ isa = PBXNativeTarget;
158
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */;
159
+ buildPhases = (
160
+ 0C04DA8F39AA031B097F3BB8 /* [CP] Check Pods Manifest.lock */,
161
+ 00E356EA1AD99517003FC87E /* Sources */,
162
+ 00E356EB1AD99517003FC87E /* Frameworks */,
163
+ 00E356EC1AD99517003FC87E /* Resources */,
164
+ 4A681E4207DF69BF32EDB988 /* [CP] Embed Pods Frameworks */,
165
+ A1EE931B3EA2A7373C889B39 /* [CP] Copy Pods Resources */,
166
+ );
167
+ buildRules = (
168
+ );
169
+ dependencies = (
170
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
171
+ );
172
+ name = exampleTests;
173
+ productName = exampleTests;
174
+ productReference = 00E356EE1AD99517003FC87E /* exampleTests.xctest */;
175
+ productType = "com.apple.product-type.bundle.unit-test";
176
+ };
177
+ 13B07F861A680F5B00A75B9A /* example */ = {
178
+ isa = PBXNativeTarget;
179
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */;
180
+ buildPhases = (
181
+ E0ED29639950E49808B0AD14 /* [CP] Check Pods Manifest.lock */,
182
+ FD10A7F022414F080027D42C /* Start Packager */,
183
+ 13B07F871A680F5B00A75B9A /* Sources */,
184
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
185
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
186
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
187
+ 9713EECCD71005EAF5B0C4D3 /* [CP] Embed Pods Frameworks */,
188
+ 9EC2B02430CAD42DE6B587C6 /* [CP] Copy Pods Resources */,
189
+ );
190
+ buildRules = (
191
+ );
192
+ dependencies = (
193
+ );
194
+ name = example;
195
+ productName = example;
196
+ productReference = 13B07F961A680F5B00A75B9A /* example.app */;
197
+ productType = "com.apple.product-type.application";
198
+ };
199
+ /* End PBXNativeTarget section */
200
+
201
+ /* Begin PBXProject section */
202
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
203
+ isa = PBXProject;
204
+ attributes = {
205
+ LastUpgradeCheck = 1210;
206
+ TargetAttributes = {
207
+ 00E356ED1AD99517003FC87E = {
208
+ CreatedOnToolsVersion = 6.2;
209
+ TestTargetID = 13B07F861A680F5B00A75B9A;
210
+ };
211
+ 13B07F861A680F5B00A75B9A = {
212
+ LastSwiftMigration = 1120;
213
+ };
214
+ };
215
+ };
216
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */;
217
+ compatibilityVersion = "Xcode 12.0";
218
+ developmentRegion = en;
219
+ hasScannedForEncodings = 0;
220
+ knownRegions = (
221
+ en,
222
+ Base,
223
+ );
224
+ mainGroup = 83CBB9F61A601CBA00E9B192;
225
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
226
+ projectDirPath = "";
227
+ projectRoot = "";
228
+ targets = (
229
+ 13B07F861A680F5B00A75B9A /* example */,
230
+ 00E356ED1AD99517003FC87E /* exampleTests */,
231
+ );
232
+ };
233
+ /* End PBXProject section */
234
+
235
+ /* Begin PBXResourcesBuildPhase section */
236
+ 00E356EC1AD99517003FC87E /* Resources */ = {
237
+ isa = PBXResourcesBuildPhase;
238
+ buildActionMask = 2147483647;
239
+ files = (
240
+ );
241
+ runOnlyForDeploymentPostprocessing = 0;
242
+ };
243
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
244
+ isa = PBXResourcesBuildPhase;
245
+ buildActionMask = 2147483647;
246
+ files = (
247
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
248
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
249
+ );
250
+ runOnlyForDeploymentPostprocessing = 0;
251
+ };
252
+ /* End PBXResourcesBuildPhase section */
253
+
254
+ /* Begin PBXShellScriptBuildPhase section */
255
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
256
+ isa = PBXShellScriptBuildPhase;
257
+ buildActionMask = 2147483647;
258
+ files = (
259
+ );
260
+ inputPaths = (
261
+ "$(SRCROOT)/.xcode.env.local",
262
+ "$(SRCROOT)/.xcode.env",
263
+ );
264
+ name = "Bundle React Native code and images";
265
+ outputPaths = (
266
+ );
267
+ runOnlyForDeploymentPostprocessing = 0;
268
+ shellPath = /bin/sh;
269
+ 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";
270
+ };
271
+ 0C04DA8F39AA031B097F3BB8 /* [CP] Check Pods Manifest.lock */ = {
272
+ isa = PBXShellScriptBuildPhase;
273
+ buildActionMask = 2147483647;
274
+ files = (
275
+ );
276
+ inputFileListPaths = (
277
+ );
278
+ inputPaths = (
279
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
280
+ "${PODS_ROOT}/Manifest.lock",
281
+ );
282
+ name = "[CP] Check Pods Manifest.lock";
283
+ outputFileListPaths = (
284
+ );
285
+ outputPaths = (
286
+ "$(DERIVED_FILE_DIR)/Pods-example-exampleTests-checkManifestLockResult.txt",
287
+ );
288
+ runOnlyForDeploymentPostprocessing = 0;
289
+ shellPath = /bin/sh;
290
+ 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";
291
+ showEnvVarsInLog = 0;
292
+ };
293
+ 4A681E4207DF69BF32EDB988 /* [CP] Embed Pods Frameworks */ = {
294
+ isa = PBXShellScriptBuildPhase;
295
+ buildActionMask = 2147483647;
296
+ files = (
297
+ );
298
+ inputFileListPaths = (
299
+ "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
300
+ );
301
+ name = "[CP] Embed Pods Frameworks";
302
+ outputFileListPaths = (
303
+ "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
304
+ );
305
+ runOnlyForDeploymentPostprocessing = 0;
306
+ shellPath = /bin/sh;
307
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-frameworks.sh\"\n";
308
+ showEnvVarsInLog = 0;
309
+ };
310
+ 9713EECCD71005EAF5B0C4D3 /* [CP] Embed Pods Frameworks */ = {
311
+ isa = PBXShellScriptBuildPhase;
312
+ buildActionMask = 2147483647;
313
+ files = (
314
+ );
315
+ inputFileListPaths = (
316
+ "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-input-files.xcfilelist",
317
+ );
318
+ name = "[CP] Embed Pods Frameworks";
319
+ outputFileListPaths = (
320
+ "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks-${CONFIGURATION}-output-files.xcfilelist",
321
+ );
322
+ runOnlyForDeploymentPostprocessing = 0;
323
+ shellPath = /bin/sh;
324
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-frameworks.sh\"\n";
325
+ showEnvVarsInLog = 0;
326
+ };
327
+ 9EC2B02430CAD42DE6B587C6 /* [CP] Copy Pods Resources */ = {
328
+ isa = PBXShellScriptBuildPhase;
329
+ buildActionMask = 2147483647;
330
+ files = (
331
+ );
332
+ inputFileListPaths = (
333
+ "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-input-files.xcfilelist",
334
+ );
335
+ name = "[CP] Copy Pods Resources";
336
+ outputFileListPaths = (
337
+ "${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources-${CONFIGURATION}-output-files.xcfilelist",
338
+ );
339
+ runOnlyForDeploymentPostprocessing = 0;
340
+ shellPath = /bin/sh;
341
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example/Pods-example-resources.sh\"\n";
342
+ showEnvVarsInLog = 0;
343
+ };
344
+ A1EE931B3EA2A7373C889B39 /* [CP] Copy Pods Resources */ = {
345
+ isa = PBXShellScriptBuildPhase;
346
+ buildActionMask = 2147483647;
347
+ files = (
348
+ );
349
+ inputFileListPaths = (
350
+ "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources-${CONFIGURATION}-input-files.xcfilelist",
351
+ );
352
+ name = "[CP] Copy Pods Resources";
353
+ outputFileListPaths = (
354
+ "${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources-${CONFIGURATION}-output-files.xcfilelist",
355
+ );
356
+ runOnlyForDeploymentPostprocessing = 0;
357
+ shellPath = /bin/sh;
358
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-example-exampleTests/Pods-example-exampleTests-resources.sh\"\n";
359
+ showEnvVarsInLog = 0;
360
+ };
361
+ E0ED29639950E49808B0AD14 /* [CP] Check Pods Manifest.lock */ = {
362
+ isa = PBXShellScriptBuildPhase;
363
+ buildActionMask = 2147483647;
364
+ files = (
365
+ );
366
+ inputFileListPaths = (
367
+ );
368
+ inputPaths = (
369
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
370
+ "${PODS_ROOT}/Manifest.lock",
371
+ );
372
+ name = "[CP] Check Pods Manifest.lock";
373
+ outputFileListPaths = (
374
+ );
375
+ outputPaths = (
376
+ "$(DERIVED_FILE_DIR)/Pods-example-checkManifestLockResult.txt",
377
+ );
378
+ runOnlyForDeploymentPostprocessing = 0;
379
+ shellPath = /bin/sh;
380
+ 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";
381
+ showEnvVarsInLog = 0;
382
+ };
383
+ FD10A7F022414F080027D42C /* Start Packager */ = {
384
+ isa = PBXShellScriptBuildPhase;
385
+ buildActionMask = 2147483647;
386
+ files = (
387
+ );
388
+ inputFileListPaths = (
389
+ );
390
+ inputPaths = (
391
+ );
392
+ name = "Start Packager";
393
+ outputFileListPaths = (
394
+ );
395
+ outputPaths = (
396
+ );
397
+ runOnlyForDeploymentPostprocessing = 0;
398
+ shellPath = /bin/sh;
399
+ 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";
400
+ showEnvVarsInLog = 0;
401
+ };
402
+ /* End PBXShellScriptBuildPhase section */
403
+
404
+ /* Begin PBXSourcesBuildPhase section */
405
+ 00E356EA1AD99517003FC87E /* Sources */ = {
406
+ isa = PBXSourcesBuildPhase;
407
+ buildActionMask = 2147483647;
408
+ files = (
409
+ 00E356F31AD99517003FC87E /* exampleTests.m in Sources */,
410
+ );
411
+ runOnlyForDeploymentPostprocessing = 0;
412
+ };
413
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
414
+ isa = PBXSourcesBuildPhase;
415
+ buildActionMask = 2147483647;
416
+ files = (
417
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
418
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
419
+ );
420
+ runOnlyForDeploymentPostprocessing = 0;
421
+ };
422
+ /* End PBXSourcesBuildPhase section */
423
+
424
+ /* Begin PBXTargetDependency section */
425
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
426
+ isa = PBXTargetDependency;
427
+ target = 13B07F861A680F5B00A75B9A /* example */;
428
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
429
+ };
430
+ /* End PBXTargetDependency section */
431
+
432
+ /* Begin XCBuildConfiguration section */
433
+ 00E356F61AD99517003FC87E /* Debug */ = {
434
+ isa = XCBuildConfiguration;
435
+ baseConfigurationReference = 49521CFF28B9F66A95CF9850 /* Pods-example-exampleTests.debug.xcconfig */;
436
+ buildSettings = {
437
+ BUNDLE_LOADER = "$(TEST_HOST)";
438
+ GCC_PREPROCESSOR_DEFINITIONS = (
439
+ "DEBUG=1",
440
+ "$(inherited)",
441
+ );
442
+ INFOPLIST_FILE = exampleTests/Info.plist;
443
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
444
+ LD_RUNPATH_SEARCH_PATHS = (
445
+ "$(inherited)",
446
+ "@executable_path/Frameworks",
447
+ "@loader_path/Frameworks",
448
+ );
449
+ OTHER_LDFLAGS = (
450
+ "-ObjC",
451
+ "-lc++",
452
+ "$(inherited)",
453
+ );
454
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
455
+ PRODUCT_NAME = "$(TARGET_NAME)";
456
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
457
+ };
458
+ name = Debug;
459
+ };
460
+ 00E356F71AD99517003FC87E /* Release */ = {
461
+ isa = XCBuildConfiguration;
462
+ baseConfigurationReference = 8FDABF19B58DEE786E28A35E /* Pods-example-exampleTests.release.xcconfig */;
463
+ buildSettings = {
464
+ BUNDLE_LOADER = "$(TEST_HOST)";
465
+ COPY_PHASE_STRIP = NO;
466
+ INFOPLIST_FILE = exampleTests/Info.plist;
467
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
468
+ LD_RUNPATH_SEARCH_PATHS = (
469
+ "$(inherited)",
470
+ "@executable_path/Frameworks",
471
+ "@loader_path/Frameworks",
472
+ );
473
+ OTHER_LDFLAGS = (
474
+ "-ObjC",
475
+ "-lc++",
476
+ "$(inherited)",
477
+ );
478
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
479
+ PRODUCT_NAME = "$(TARGET_NAME)";
480
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
481
+ };
482
+ name = Release;
483
+ };
484
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
485
+ isa = XCBuildConfiguration;
486
+ baseConfigurationReference = C6E9B2B57F84CDAB156CCB5D /* Pods-example.debug.xcconfig */;
487
+ buildSettings = {
488
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
489
+ CLANG_ENABLE_MODULES = YES;
490
+ CODE_SIGN_ENTITLEMENTS = example/example.entitlements;
491
+ CODE_SIGN_STYLE = Manual;
492
+ CURRENT_PROJECT_VERSION = 1;
493
+ DEVELOPMENT_TEAM = 7C42LT37LT;
494
+ ENABLE_BITCODE = NO;
495
+ INFOPLIST_FILE = example/Info.plist;
496
+ LD_RUNPATH_SEARCH_PATHS = (
497
+ "$(inherited)",
498
+ "@executable_path/Frameworks",
499
+ );
500
+ OTHER_LDFLAGS = (
501
+ "$(inherited)",
502
+ "-ObjC",
503
+ "-lc++",
504
+ );
505
+ PRODUCT_BUNDLE_IDENTIFIER = com.appice.ios;
506
+ PRODUCT_NAME = example;
507
+ PROVISIONING_PROFILE_SPECIFIER = Development;
508
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
509
+ SWIFT_VERSION = 5.0;
510
+ VERSIONING_SYSTEM = "apple-generic";
511
+ };
512
+ name = Debug;
513
+ };
514
+ 13B07F951A680F5B00A75B9A /* Release */ = {
515
+ isa = XCBuildConfiguration;
516
+ baseConfigurationReference = D64897B8D73D76841AAA3380 /* Pods-example.release.xcconfig */;
517
+ buildSettings = {
518
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
519
+ CLANG_ENABLE_MODULES = YES;
520
+ CODE_SIGN_ENTITLEMENTS = example/example.entitlements;
521
+ CODE_SIGN_STYLE = Manual;
522
+ CURRENT_PROJECT_VERSION = 1;
523
+ DEVELOPMENT_TEAM = 7C42LT37LT;
524
+ INFOPLIST_FILE = example/Info.plist;
525
+ LD_RUNPATH_SEARCH_PATHS = (
526
+ "$(inherited)",
527
+ "@executable_path/Frameworks",
528
+ );
529
+ OTHER_LDFLAGS = (
530
+ "$(inherited)",
531
+ "-ObjC",
532
+ "-lc++",
533
+ );
534
+ PRODUCT_BUNDLE_IDENTIFIER = com.appice.ios;
535
+ PRODUCT_NAME = example;
536
+ PROVISIONING_PROFILE_SPECIFIER = Development;
537
+ SWIFT_VERSION = 5.0;
538
+ VERSIONING_SYSTEM = "apple-generic";
539
+ };
540
+ name = Release;
541
+ };
542
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
543
+ isa = XCBuildConfiguration;
544
+ buildSettings = {
545
+ ALWAYS_SEARCH_USER_PATHS = NO;
546
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
547
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
548
+ CLANG_CXX_LIBRARY = "libc++";
549
+ CLANG_ENABLE_MODULES = YES;
550
+ CLANG_ENABLE_OBJC_ARC = YES;
551
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
552
+ CLANG_WARN_BOOL_CONVERSION = YES;
553
+ CLANG_WARN_COMMA = YES;
554
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
555
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
556
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
557
+ CLANG_WARN_EMPTY_BODY = YES;
558
+ CLANG_WARN_ENUM_CONVERSION = YES;
559
+ CLANG_WARN_INFINITE_RECURSION = YES;
560
+ CLANG_WARN_INT_CONVERSION = YES;
561
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
562
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
563
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
564
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
565
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
566
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
567
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
568
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
569
+ CLANG_WARN_UNREACHABLE_CODE = YES;
570
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
571
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
572
+ COPY_PHASE_STRIP = NO;
573
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
574
+ ENABLE_TESTABILITY = YES;
575
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
576
+ GCC_C_LANGUAGE_STANDARD = gnu99;
577
+ GCC_DYNAMIC_NO_PIC = NO;
578
+ GCC_NO_COMMON_BLOCKS = YES;
579
+ GCC_OPTIMIZATION_LEVEL = 0;
580
+ GCC_PREPROCESSOR_DEFINITIONS = (
581
+ "DEBUG=1",
582
+ "$(inherited)",
583
+ );
584
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
585
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
586
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
587
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
588
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
589
+ GCC_WARN_UNUSED_FUNCTION = YES;
590
+ GCC_WARN_UNUSED_VARIABLE = YES;
591
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
592
+ LD_RUNPATH_SEARCH_PATHS = (
593
+ /usr/lib/swift,
594
+ "$(inherited)",
595
+ );
596
+ LIBRARY_SEARCH_PATHS = (
597
+ "\"$(SDKROOT)/usr/lib/swift\"",
598
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
599
+ "\"$(inherited)\"",
600
+ );
601
+ MTL_ENABLE_DEBUG_INFO = YES;
602
+ ONLY_ACTIVE_ARCH = YES;
603
+ OTHER_CPLUSPLUSFLAGS = (
604
+ "$(OTHER_CFLAGS)",
605
+ "-DFOLLY_NO_CONFIG",
606
+ "-DFOLLY_MOBILE=1",
607
+ "-DFOLLY_USE_LIBCPP=1",
608
+ );
609
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
610
+ SDKROOT = iphoneos;
611
+ };
612
+ name = Debug;
613
+ };
614
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
615
+ isa = XCBuildConfiguration;
616
+ buildSettings = {
617
+ ALWAYS_SEARCH_USER_PATHS = NO;
618
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
619
+ CLANG_CXX_LANGUAGE_STANDARD = "c++17";
620
+ CLANG_CXX_LIBRARY = "libc++";
621
+ CLANG_ENABLE_MODULES = YES;
622
+ CLANG_ENABLE_OBJC_ARC = YES;
623
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
624
+ CLANG_WARN_BOOL_CONVERSION = YES;
625
+ CLANG_WARN_COMMA = YES;
626
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
627
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
628
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
629
+ CLANG_WARN_EMPTY_BODY = YES;
630
+ CLANG_WARN_ENUM_CONVERSION = YES;
631
+ CLANG_WARN_INFINITE_RECURSION = YES;
632
+ CLANG_WARN_INT_CONVERSION = YES;
633
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
634
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
635
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
636
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
637
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
638
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
639
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
640
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
641
+ CLANG_WARN_UNREACHABLE_CODE = YES;
642
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
643
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
644
+ COPY_PHASE_STRIP = YES;
645
+ ENABLE_NS_ASSERTIONS = NO;
646
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
647
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
648
+ GCC_C_LANGUAGE_STANDARD = gnu99;
649
+ GCC_NO_COMMON_BLOCKS = YES;
650
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
651
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
652
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
653
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
654
+ GCC_WARN_UNUSED_FUNCTION = YES;
655
+ GCC_WARN_UNUSED_VARIABLE = YES;
656
+ IPHONEOS_DEPLOYMENT_TARGET = 12.4;
657
+ LD_RUNPATH_SEARCH_PATHS = (
658
+ /usr/lib/swift,
659
+ "$(inherited)",
660
+ );
661
+ LIBRARY_SEARCH_PATHS = (
662
+ "\"$(SDKROOT)/usr/lib/swift\"",
663
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
664
+ "\"$(inherited)\"",
665
+ );
666
+ MTL_ENABLE_DEBUG_INFO = NO;
667
+ OTHER_CPLUSPLUSFLAGS = (
668
+ "$(OTHER_CFLAGS)",
669
+ "-DFOLLY_NO_CONFIG",
670
+ "-DFOLLY_MOBILE=1",
671
+ "-DFOLLY_USE_LIBCPP=1",
672
+ );
673
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
674
+ SDKROOT = iphoneos;
675
+ VALIDATE_PRODUCT = YES;
676
+ };
677
+ name = Release;
678
+ };
679
+ /* End XCBuildConfiguration section */
680
+
681
+ /* Begin XCConfigurationList section */
682
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */ = {
683
+ isa = XCConfigurationList;
684
+ buildConfigurations = (
685
+ 00E356F61AD99517003FC87E /* Debug */,
686
+ 00E356F71AD99517003FC87E /* Release */,
687
+ );
688
+ defaultConfigurationIsVisible = 0;
689
+ defaultConfigurationName = Release;
690
+ };
691
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = {
692
+ isa = XCConfigurationList;
693
+ buildConfigurations = (
694
+ 13B07F941A680F5B00A75B9A /* Debug */,
695
+ 13B07F951A680F5B00A75B9A /* Release */,
696
+ );
697
+ defaultConfigurationIsVisible = 0;
698
+ defaultConfigurationName = Release;
699
+ };
700
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */ = {
701
+ isa = XCConfigurationList;
702
+ buildConfigurations = (
703
+ 83CBBA201A601CBA00E9B192 /* Debug */,
704
+ 83CBBA211A601CBA00E9B192 /* Release */,
705
+ );
706
+ defaultConfigurationIsVisible = 0;
707
+ defaultConfigurationName = Release;
708
+ };
709
+ /* End XCConfigurationList section */
710
+ };
711
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
712
+ }