reactnative-plugin-appice 1.7.23 → 1.7.25

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 (108) hide show
  1. package/README.md +37 -37
  2. package/android/README.md +14 -14
  3. package/android/build.gradle +158 -153
  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 +164 -164
  9. package/android/src/main/java/com/reactlibrary/AppICEUtils.java +274 -274
  10. package/android/src/main/java/com/reactlibrary/AppIceReactPluginModule.java +778 -778
  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 +282 -282
  14. package/android/src/main/java/com/reactlibrary/NotificationEventService.java +59 -59
  15. package/android/src/main/java/com/reactlibrary/StringConstants.java +24 -24
  16. package/campaign.js +25 -25
  17. package/example/App.js +332 -332
  18. package/example/Gemfile +6 -6
  19. package/example/PageA.tsx +15 -15
  20. package/example/__tests__/App-test.js +14 -14
  21. package/example/ancilliary.js +486 -486
  22. package/example/android/.gradle/7.3.3/checksums/checksums.lock +0 -0
  23. package/example/android/.gradle/7.3.3/fileChanges/last-build.bin +0 -0
  24. package/example/android/.gradle/7.3.3/fileHashes/fileHashes.lock +0 -0
  25. package/example/android/.gradle/7.3.3/gc.properties +0 -0
  26. package/example/android/.gradle/vcs-1/gc.properties +0 -0
  27. package/example/android/app/_BUCK +55 -55
  28. package/example/android/app/build.gradle +320 -320
  29. package/example/android/app/build_defs.bzl +19 -19
  30. package/example/android/app/proguard-rules.pro +10 -10
  31. package/example/android/app/src/debug/AndroidManifest.xml +13 -13
  32. package/example/android/app/src/debug/java/com/example/ReactNativeFlipper.java +73 -73
  33. package/example/android/app/src/main/AndroidManifest.xml +72 -72
  34. package/example/android/app/src/main/java/com/example/MainActivity.java +48 -48
  35. package/example/android/app/src/main/java/com/example/MainApplication.java +91 -91
  36. package/example/android/app/src/main/java/com/example/newarchitecture/MainApplicationReactNativeHost.java +116 -116
  37. package/example/android/app/src/main/java/com/example/newarchitecture/components/MainComponentsRegistry.java +36 -36
  38. package/example/android/app/src/main/java/com/example/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java +48 -48
  39. package/example/android/app/src/main/jni/Android.mk +48 -48
  40. package/example/android/app/src/main/jni/MainApplicationModuleProvider.cpp +24 -24
  41. package/example/android/app/src/main/jni/MainApplicationModuleProvider.h +16 -16
  42. package/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp +45 -45
  43. package/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h +38 -38
  44. package/example/android/app/src/main/jni/MainComponentsRegistry.cpp +61 -61
  45. package/example/android/app/src/main/jni/MainComponentsRegistry.h +32 -32
  46. package/example/android/app/src/main/jni/OnLoad.cpp +11 -11
  47. package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -36
  48. package/example/android/app/src/main/res/values/strings.xml +3 -3
  49. package/example/android/app/src/main/res/values/styles.xml +9 -9
  50. package/example/android/build.gradle +73 -73
  51. package/example/android/gradle/wrapper/gradle-wrapper.properties +5 -5
  52. package/example/android/gradle.properties +40 -40
  53. package/example/android/gradlew +234 -234
  54. package/example/android/settings.gradle +11 -11
  55. package/example/app.json +3 -3
  56. package/example/babel.config.js +3 -3
  57. package/example/index.js +9 -9
  58. package/example/ios/Podfile +44 -44
  59. package/example/ios/Podfile.lock +561 -561
  60. package/example/ios/_xcode.env +11 -11
  61. package/example/ios/example/AppDelegate.h +8 -8
  62. package/example/ios/example/AppDelegate.mm +174 -174
  63. package/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json +53 -53
  64. package/example/ios/example/Images.xcassets/Contents.json +6 -6
  65. package/example/ios/example/Info.plist +62 -62
  66. package/example/ios/example/LaunchScreen.storyboard +47 -47
  67. package/example/ios/example/example.entitlements +8 -8
  68. package/example/ios/example/main.m +10 -10
  69. package/example/ios/example.xcodeproj/project.pbxproj +712 -712
  70. package/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme +88 -88
  71. package/example/ios/example.xcworkspace/contents.xcworkspacedata +10 -10
  72. package/example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  73. package/example/ios/exampleTests/Info.plist +24 -24
  74. package/example/ios/exampleTests/exampleTests.m +66 -66
  75. package/example/metro.config.js +17 -17
  76. package/example/package.json +36 -36
  77. package/example/yarn.lock +7176 -7176
  78. package/index.js +590 -590
  79. package/ios/AppICEReactEvent.h +23 -23
  80. package/ios/AppICEReactEvent.m +86 -86
  81. package/ios/AppIceReactPlugin.h +65 -65
  82. package/ios/AppIceReactPlugin.m +683 -683
  83. package/ios/AppIceReactPlugin.xcodeproj/project.pbxproj +364 -364
  84. package/ios/AppIceReactPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata +4 -4
  85. package/ios/AppIceReactPlugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  86. package/ios/AppIceReactPlugin.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  87. package/ios/AppIceReactPlugin.xcodeproj/xcuserdata/artherajesh.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  88. package/ios/AppIceReactPlugin.xcworkspace/contents.xcworkspacedata +10 -10
  89. package/ios/AppIceReactPlugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  90. package/ios/AppIceReactPlugin.xcworkspace/xcuserdata/artherajesh.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  91. package/ios/Podfile +10 -10
  92. package/ios/Podfile.lock +3 -3
  93. package/ios/Pods/Manifest.lock +3 -3
  94. package/ios/Pods/Pods.xcodeproj/project.pbxproj +395 -395
  95. package/ios/Pods/Pods.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/Pods-AppIceReactPlugin.xcscheme +58 -58
  96. package/ios/Pods/Pods.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/xcschememanagement.plist +18 -18
  97. package/ios/Pods/Pods.xcodeproj/xcuserdata/artherajesh.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  98. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-Info.plist +26 -26
  99. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-acknowledgements.markdown +3 -3
  100. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-acknowledgements.plist +29 -29
  101. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-dummy.m +5 -5
  102. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-umbrella.h +16 -16
  103. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.debug.xcconfig +6 -6
  104. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.modulemap +6 -6
  105. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.release.xcconfig +6 -6
  106. package/package.json +42 -42
  107. package/reactnative-plugin-appice.podspec +30 -30
  108. package/android/obfuscationdictionary.txt +0 -501
@@ -1,364 +1,364 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 46;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 0C28323232741F2D910A31B6 /* Pods_AppIceReactPlugin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DFE89FC47B2F8C1EAFF60C90 /* Pods_AppIceReactPlugin.framework */; };
11
- 404FB02224862CC80075A49E /* AppIceReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 404FB01F24862CC80075A49E /* AppIceReactPlugin.m */; };
12
- BB66EA6428A256F3008EF447 /* AppICEReactEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = BB66EA6328A256F3008EF447 /* AppICEReactEvent.m */; };
13
- /* End PBXBuildFile section */
14
-
15
- /* Begin PBXCopyFilesBuildPhase section */
16
- 58B511D91A9E6C8500147676 /* CopyFiles */ = {
17
- isa = PBXCopyFilesBuildPhase;
18
- buildActionMask = 2147483647;
19
- dstPath = "include/$(PRODUCT_NAME)";
20
- dstSubfolderSpec = 16;
21
- files = (
22
- );
23
- runOnlyForDeploymentPostprocessing = 0;
24
- };
25
- /* End PBXCopyFilesBuildPhase section */
26
-
27
- /* Begin PBXFileReference section */
28
- 134814201AA4EA6300B7C361 /* libAppIceReactPlugin.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libAppIceReactPlugin.a; sourceTree = BUILT_PRODUCTS_DIR; };
29
- 404FB01F24862CC80075A49E /* AppIceReactPlugin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppIceReactPlugin.m; sourceTree = "<group>"; };
30
- 89FCB9D528A615DE00F7C1EB /* AppIceReactPlugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppIceReactPlugin.h; sourceTree = "<group>"; };
31
- BB66EA6228A256F2008EF447 /* AppICEReactEvent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppICEReactEvent.h; sourceTree = "<group>"; };
32
- BB66EA6328A256F3008EF447 /* AppICEReactEvent.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppICEReactEvent.m; sourceTree = "<group>"; };
33
- C309D58EF84CFCAE1F2DABE9 /* Pods-AppIceReactPlugin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AppIceReactPlugin.release.xcconfig"; path = "Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.release.xcconfig"; sourceTree = "<group>"; };
34
- DFE89FC47B2F8C1EAFF60C90 /* Pods_AppIceReactPlugin.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AppIceReactPlugin.framework; sourceTree = BUILT_PRODUCTS_DIR; };
35
- F1849A6B1F6169CACAE96561 /* Pods-AppIceReactPlugin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AppIceReactPlugin.debug.xcconfig"; path = "Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.debug.xcconfig"; sourceTree = "<group>"; };
36
- /* End PBXFileReference section */
37
-
38
- /* Begin PBXFrameworksBuildPhase section */
39
- 58B511D81A9E6C8500147676 /* Frameworks */ = {
40
- isa = PBXFrameworksBuildPhase;
41
- buildActionMask = 2147483647;
42
- files = (
43
- 0C28323232741F2D910A31B6 /* Pods_AppIceReactPlugin.framework in Frameworks */,
44
- );
45
- runOnlyForDeploymentPostprocessing = 0;
46
- };
47
- /* End PBXFrameworksBuildPhase section */
48
-
49
- /* Begin PBXGroup section */
50
- 134814211AA4EA7D00B7C361 /* Products */ = {
51
- isa = PBXGroup;
52
- children = (
53
- 134814201AA4EA6300B7C361 /* libAppIceReactPlugin.a */,
54
- );
55
- name = Products;
56
- sourceTree = "<group>";
57
- };
58
- 188C1374A6E81E91ECF3867A /* Frameworks */ = {
59
- isa = PBXGroup;
60
- children = (
61
- DFE89FC47B2F8C1EAFF60C90 /* Pods_AppIceReactPlugin.framework */,
62
- );
63
- name = Frameworks;
64
- sourceTree = "<group>";
65
- };
66
- 58B511D21A9E6C8500147676 = {
67
- isa = PBXGroup;
68
- children = (
69
- BB66EA6228A256F2008EF447 /* AppICEReactEvent.h */,
70
- BB66EA6328A256F3008EF447 /* AppICEReactEvent.m */,
71
- 89FCB9D528A615DE00F7C1EB /* AppIceReactPlugin.h */,
72
- 404FB01F24862CC80075A49E /* AppIceReactPlugin.m */,
73
- 134814211AA4EA7D00B7C361 /* Products */,
74
- 7F32BBE73BD8F3C8D1DAD947 /* Pods */,
75
- 188C1374A6E81E91ECF3867A /* Frameworks */,
76
- );
77
- sourceTree = "<group>";
78
- };
79
- 7F32BBE73BD8F3C8D1DAD947 /* Pods */ = {
80
- isa = PBXGroup;
81
- children = (
82
- F1849A6B1F6169CACAE96561 /* Pods-AppIceReactPlugin.debug.xcconfig */,
83
- C309D58EF84CFCAE1F2DABE9 /* Pods-AppIceReactPlugin.release.xcconfig */,
84
- );
85
- path = Pods;
86
- sourceTree = "<group>";
87
- };
88
- /* End PBXGroup section */
89
-
90
- /* Begin PBXNativeTarget section */
91
- 58B511DA1A9E6C8500147676 /* AppIceReactPlugin */ = {
92
- isa = PBXNativeTarget;
93
- buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "AppIceReactPlugin" */;
94
- buildPhases = (
95
- E1D838F5C954732D315E9EB3 /* [CP] Check Pods Manifest.lock */,
96
- 58B511D71A9E6C8500147676 /* Sources */,
97
- 58B511D81A9E6C8500147676 /* Frameworks */,
98
- 58B511D91A9E6C8500147676 /* CopyFiles */,
99
- );
100
- buildRules = (
101
- );
102
- dependencies = (
103
- );
104
- name = AppIceReactPlugin;
105
- productName = RCTDataManager;
106
- productReference = 134814201AA4EA6300B7C361 /* libAppIceReactPlugin.a */;
107
- productType = "com.apple.product-type.library.static";
108
- };
109
- /* End PBXNativeTarget section */
110
-
111
- /* Begin PBXProject section */
112
- 58B511D31A9E6C8500147676 /* Project object */ = {
113
- isa = PBXProject;
114
- attributes = {
115
- LastUpgradeCheck = 0920;
116
- ORGANIZATIONNAME = Facebook;
117
- TargetAttributes = {
118
- 58B511DA1A9E6C8500147676 = {
119
- CreatedOnToolsVersion = 6.1.1;
120
- };
121
- };
122
- };
123
- buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "AppIceReactPlugin" */;
124
- compatibilityVersion = "Xcode 3.2";
125
- developmentRegion = en;
126
- hasScannedForEncodings = 0;
127
- knownRegions = (
128
- en,
129
- Base,
130
- );
131
- mainGroup = 58B511D21A9E6C8500147676;
132
- productRefGroup = 58B511D21A9E6C8500147676;
133
- projectDirPath = "";
134
- projectRoot = "";
135
- targets = (
136
- 58B511DA1A9E6C8500147676 /* AppIceReactPlugin */,
137
- );
138
- };
139
- /* End PBXProject section */
140
-
141
- /* Begin PBXShellScriptBuildPhase section */
142
- E1D838F5C954732D315E9EB3 /* [CP] Check Pods Manifest.lock */ = {
143
- isa = PBXShellScriptBuildPhase;
144
- buildActionMask = 2147483647;
145
- files = (
146
- );
147
- inputFileListPaths = (
148
- );
149
- inputPaths = (
150
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
151
- "${PODS_ROOT}/Manifest.lock",
152
- );
153
- name = "[CP] Check Pods Manifest.lock";
154
- outputFileListPaths = (
155
- );
156
- outputPaths = (
157
- "$(DERIVED_FILE_DIR)/Pods-AppIceReactPlugin-checkManifestLockResult.txt",
158
- );
159
- runOnlyForDeploymentPostprocessing = 0;
160
- shellPath = /bin/sh;
161
- 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";
162
- showEnvVarsInLog = 0;
163
- };
164
- /* End PBXShellScriptBuildPhase section */
165
-
166
- /* Begin PBXSourcesBuildPhase section */
167
- 58B511D71A9E6C8500147676 /* Sources */ = {
168
- isa = PBXSourcesBuildPhase;
169
- buildActionMask = 2147483647;
170
- files = (
171
- BB66EA6428A256F3008EF447 /* AppICEReactEvent.m in Sources */,
172
- 404FB02224862CC80075A49E /* AppIceReactPlugin.m in Sources */,
173
- );
174
- runOnlyForDeploymentPostprocessing = 0;
175
- };
176
- /* End PBXSourcesBuildPhase section */
177
-
178
- /* Begin XCBuildConfiguration section */
179
- 58B511ED1A9E6C8500147676 /* Debug */ = {
180
- isa = XCBuildConfiguration;
181
- buildSettings = {
182
- ALWAYS_SEARCH_USER_PATHS = NO;
183
- CLANG_ANALYZER_NONNULL = YES;
184
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
185
- CLANG_CXX_LIBRARY = "libc++";
186
- CLANG_ENABLE_MODULES = YES;
187
- CLANG_ENABLE_OBJC_ARC = YES;
188
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
189
- CLANG_WARN_BOOL_CONVERSION = YES;
190
- CLANG_WARN_COMMA = YES;
191
- CLANG_WARN_CONSTANT_CONVERSION = YES;
192
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
193
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
194
- CLANG_WARN_EMPTY_BODY = YES;
195
- CLANG_WARN_ENUM_CONVERSION = YES;
196
- CLANG_WARN_INFINITE_RECURSION = YES;
197
- CLANG_WARN_INT_CONVERSION = YES;
198
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
199
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
200
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
201
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
202
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
203
- CLANG_WARN_STRICT_PROTOTYPES = YES;
204
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
205
- CLANG_WARN_UNREACHABLE_CODE = YES;
206
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
207
- COPY_PHASE_STRIP = NO;
208
- ENABLE_STRICT_OBJC_MSGSEND = YES;
209
- ENABLE_TESTABILITY = YES;
210
- GCC_C_LANGUAGE_STANDARD = gnu99;
211
- GCC_DYNAMIC_NO_PIC = NO;
212
- GCC_NO_COMMON_BLOCKS = YES;
213
- GCC_OPTIMIZATION_LEVEL = 0;
214
- GCC_PREPROCESSOR_DEFINITIONS = (
215
- "DEBUG=1",
216
- "$(inherited)",
217
- );
218
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
219
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
220
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
221
- GCC_WARN_UNDECLARED_SELECTOR = YES;
222
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
223
- GCC_WARN_UNUSED_FUNCTION = YES;
224
- GCC_WARN_UNUSED_VARIABLE = YES;
225
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
226
- LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
227
- LIBRARY_SEARCH_PATHS = (
228
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
229
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
230
- "\"$(inherited)\"",
231
- );
232
- MTL_ENABLE_DEBUG_INFO = YES;
233
- ONLY_ACTIVE_ARCH = YES;
234
- SDKROOT = iphoneos;
235
- };
236
- name = Debug;
237
- };
238
- 58B511EE1A9E6C8500147676 /* Release */ = {
239
- isa = XCBuildConfiguration;
240
- buildSettings = {
241
- ALWAYS_SEARCH_USER_PATHS = NO;
242
- CLANG_ANALYZER_NONNULL = YES;
243
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
244
- CLANG_CXX_LIBRARY = "libc++";
245
- CLANG_ENABLE_MODULES = YES;
246
- CLANG_ENABLE_OBJC_ARC = YES;
247
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
248
- CLANG_WARN_BOOL_CONVERSION = YES;
249
- CLANG_WARN_COMMA = YES;
250
- CLANG_WARN_CONSTANT_CONVERSION = YES;
251
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
252
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
253
- CLANG_WARN_EMPTY_BODY = YES;
254
- CLANG_WARN_ENUM_CONVERSION = YES;
255
- CLANG_WARN_INFINITE_RECURSION = YES;
256
- CLANG_WARN_INT_CONVERSION = YES;
257
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
258
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
259
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
260
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
261
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
262
- CLANG_WARN_STRICT_PROTOTYPES = YES;
263
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
264
- CLANG_WARN_UNREACHABLE_CODE = YES;
265
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
266
- COPY_PHASE_STRIP = YES;
267
- ENABLE_NS_ASSERTIONS = NO;
268
- ENABLE_STRICT_OBJC_MSGSEND = YES;
269
- GCC_C_LANGUAGE_STANDARD = gnu99;
270
- GCC_NO_COMMON_BLOCKS = YES;
271
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
272
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
273
- GCC_WARN_UNDECLARED_SELECTOR = YES;
274
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
275
- GCC_WARN_UNUSED_FUNCTION = YES;
276
- GCC_WARN_UNUSED_VARIABLE = YES;
277
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
278
- LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
279
- LIBRARY_SEARCH_PATHS = (
280
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
281
- "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
282
- "\"$(inherited)\"",
283
- );
284
- MTL_ENABLE_DEBUG_INFO = NO;
285
- SDKROOT = iphoneos;
286
- VALIDATE_PRODUCT = YES;
287
- };
288
- name = Release;
289
- };
290
- 58B511F01A9E6C8500147676 /* Debug */ = {
291
- isa = XCBuildConfiguration;
292
- baseConfigurationReference = F1849A6B1F6169CACAE96561 /* Pods-AppIceReactPlugin.debug.xcconfig */;
293
- buildSettings = {
294
- FRAMEWORK_SEARCH_PATHS = (
295
- "$(inherited)",
296
- "$(PROJECT_DIR)/AppICESDK/include/iosAppiceSDK",
297
- "$(PROJECT_DIR)",
298
- );
299
- HEADER_SEARCH_PATHS = (
300
- "$(inherited)",
301
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
302
- "$(SRCROOT)/../../../React/**",
303
- "$(SRCROOT)/../../react-native/React/**",
304
- );
305
- LIBRARY_SEARCH_PATHS = (
306
- "$(inherited)",
307
- "$(PROJECT_DIR)/AppICESDK",
308
- );
309
- OTHER_LDFLAGS = "-ObjC";
310
- PRODUCT_NAME = AppIceReactPlugin;
311
- SKIP_INSTALL = YES;
312
- };
313
- name = Debug;
314
- };
315
- 58B511F11A9E6C8500147676 /* Release */ = {
316
- isa = XCBuildConfiguration;
317
- baseConfigurationReference = C309D58EF84CFCAE1F2DABE9 /* Pods-AppIceReactPlugin.release.xcconfig */;
318
- buildSettings = {
319
- FRAMEWORK_SEARCH_PATHS = (
320
- "$(inherited)",
321
- "$(PROJECT_DIR)/AppICESDK/include/iosAppiceSDK",
322
- "$(PROJECT_DIR)",
323
- );
324
- HEADER_SEARCH_PATHS = (
325
- "$(inherited)",
326
- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
327
- "$(SRCROOT)/../../../React/**",
328
- "$(SRCROOT)/../../react-native/React/**",
329
- );
330
- LIBRARY_SEARCH_PATHS = (
331
- "$(inherited)",
332
- "$(PROJECT_DIR)/AppICESDK",
333
- );
334
- OTHER_LDFLAGS = "-ObjC";
335
- PRODUCT_NAME = AppIceReactPlugin;
336
- SKIP_INSTALL = YES;
337
- };
338
- name = Release;
339
- };
340
- /* End XCBuildConfiguration section */
341
-
342
- /* Begin XCConfigurationList section */
343
- 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "AppIceReactPlugin" */ = {
344
- isa = XCConfigurationList;
345
- buildConfigurations = (
346
- 58B511ED1A9E6C8500147676 /* Debug */,
347
- 58B511EE1A9E6C8500147676 /* Release */,
348
- );
349
- defaultConfigurationIsVisible = 0;
350
- defaultConfigurationName = Release;
351
- };
352
- 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "AppIceReactPlugin" */ = {
353
- isa = XCConfigurationList;
354
- buildConfigurations = (
355
- 58B511F01A9E6C8500147676 /* Debug */,
356
- 58B511F11A9E6C8500147676 /* Release */,
357
- );
358
- defaultConfigurationIsVisible = 0;
359
- defaultConfigurationName = Release;
360
- };
361
- /* End XCConfigurationList section */
362
- };
363
- rootObject = 58B511D31A9E6C8500147676 /* Project object */;
364
- }
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 0C28323232741F2D910A31B6 /* Pods_AppIceReactPlugin.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DFE89FC47B2F8C1EAFF60C90 /* Pods_AppIceReactPlugin.framework */; };
11
+ 404FB02224862CC80075A49E /* AppIceReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 404FB01F24862CC80075A49E /* AppIceReactPlugin.m */; };
12
+ BB66EA6428A256F3008EF447 /* AppICEReactEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = BB66EA6328A256F3008EF447 /* AppICEReactEvent.m */; };
13
+ /* End PBXBuildFile section */
14
+
15
+ /* Begin PBXCopyFilesBuildPhase section */
16
+ 58B511D91A9E6C8500147676 /* CopyFiles */ = {
17
+ isa = PBXCopyFilesBuildPhase;
18
+ buildActionMask = 2147483647;
19
+ dstPath = "include/$(PRODUCT_NAME)";
20
+ dstSubfolderSpec = 16;
21
+ files = (
22
+ );
23
+ runOnlyForDeploymentPostprocessing = 0;
24
+ };
25
+ /* End PBXCopyFilesBuildPhase section */
26
+
27
+ /* Begin PBXFileReference section */
28
+ 134814201AA4EA6300B7C361 /* libAppIceReactPlugin.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libAppIceReactPlugin.a; sourceTree = BUILT_PRODUCTS_DIR; };
29
+ 404FB01F24862CC80075A49E /* AppIceReactPlugin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppIceReactPlugin.m; sourceTree = "<group>"; };
30
+ 89FCB9D528A615DE00F7C1EB /* AppIceReactPlugin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppIceReactPlugin.h; sourceTree = "<group>"; };
31
+ BB66EA6228A256F2008EF447 /* AppICEReactEvent.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppICEReactEvent.h; sourceTree = "<group>"; };
32
+ BB66EA6328A256F3008EF447 /* AppICEReactEvent.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppICEReactEvent.m; sourceTree = "<group>"; };
33
+ C309D58EF84CFCAE1F2DABE9 /* Pods-AppIceReactPlugin.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AppIceReactPlugin.release.xcconfig"; path = "Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.release.xcconfig"; sourceTree = "<group>"; };
34
+ DFE89FC47B2F8C1EAFF60C90 /* Pods_AppIceReactPlugin.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AppIceReactPlugin.framework; sourceTree = BUILT_PRODUCTS_DIR; };
35
+ F1849A6B1F6169CACAE96561 /* Pods-AppIceReactPlugin.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AppIceReactPlugin.debug.xcconfig"; path = "Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.debug.xcconfig"; sourceTree = "<group>"; };
36
+ /* End PBXFileReference section */
37
+
38
+ /* Begin PBXFrameworksBuildPhase section */
39
+ 58B511D81A9E6C8500147676 /* Frameworks */ = {
40
+ isa = PBXFrameworksBuildPhase;
41
+ buildActionMask = 2147483647;
42
+ files = (
43
+ 0C28323232741F2D910A31B6 /* Pods_AppIceReactPlugin.framework in Frameworks */,
44
+ );
45
+ runOnlyForDeploymentPostprocessing = 0;
46
+ };
47
+ /* End PBXFrameworksBuildPhase section */
48
+
49
+ /* Begin PBXGroup section */
50
+ 134814211AA4EA7D00B7C361 /* Products */ = {
51
+ isa = PBXGroup;
52
+ children = (
53
+ 134814201AA4EA6300B7C361 /* libAppIceReactPlugin.a */,
54
+ );
55
+ name = Products;
56
+ sourceTree = "<group>";
57
+ };
58
+ 188C1374A6E81E91ECF3867A /* Frameworks */ = {
59
+ isa = PBXGroup;
60
+ children = (
61
+ DFE89FC47B2F8C1EAFF60C90 /* Pods_AppIceReactPlugin.framework */,
62
+ );
63
+ name = Frameworks;
64
+ sourceTree = "<group>";
65
+ };
66
+ 58B511D21A9E6C8500147676 = {
67
+ isa = PBXGroup;
68
+ children = (
69
+ BB66EA6228A256F2008EF447 /* AppICEReactEvent.h */,
70
+ BB66EA6328A256F3008EF447 /* AppICEReactEvent.m */,
71
+ 89FCB9D528A615DE00F7C1EB /* AppIceReactPlugin.h */,
72
+ 404FB01F24862CC80075A49E /* AppIceReactPlugin.m */,
73
+ 134814211AA4EA7D00B7C361 /* Products */,
74
+ 7F32BBE73BD8F3C8D1DAD947 /* Pods */,
75
+ 188C1374A6E81E91ECF3867A /* Frameworks */,
76
+ );
77
+ sourceTree = "<group>";
78
+ };
79
+ 7F32BBE73BD8F3C8D1DAD947 /* Pods */ = {
80
+ isa = PBXGroup;
81
+ children = (
82
+ F1849A6B1F6169CACAE96561 /* Pods-AppIceReactPlugin.debug.xcconfig */,
83
+ C309D58EF84CFCAE1F2DABE9 /* Pods-AppIceReactPlugin.release.xcconfig */,
84
+ );
85
+ path = Pods;
86
+ sourceTree = "<group>";
87
+ };
88
+ /* End PBXGroup section */
89
+
90
+ /* Begin PBXNativeTarget section */
91
+ 58B511DA1A9E6C8500147676 /* AppIceReactPlugin */ = {
92
+ isa = PBXNativeTarget;
93
+ buildConfigurationList = 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "AppIceReactPlugin" */;
94
+ buildPhases = (
95
+ E1D838F5C954732D315E9EB3 /* [CP] Check Pods Manifest.lock */,
96
+ 58B511D71A9E6C8500147676 /* Sources */,
97
+ 58B511D81A9E6C8500147676 /* Frameworks */,
98
+ 58B511D91A9E6C8500147676 /* CopyFiles */,
99
+ );
100
+ buildRules = (
101
+ );
102
+ dependencies = (
103
+ );
104
+ name = AppIceReactPlugin;
105
+ productName = RCTDataManager;
106
+ productReference = 134814201AA4EA6300B7C361 /* libAppIceReactPlugin.a */;
107
+ productType = "com.apple.product-type.library.static";
108
+ };
109
+ /* End PBXNativeTarget section */
110
+
111
+ /* Begin PBXProject section */
112
+ 58B511D31A9E6C8500147676 /* Project object */ = {
113
+ isa = PBXProject;
114
+ attributes = {
115
+ LastUpgradeCheck = 0920;
116
+ ORGANIZATIONNAME = Facebook;
117
+ TargetAttributes = {
118
+ 58B511DA1A9E6C8500147676 = {
119
+ CreatedOnToolsVersion = 6.1.1;
120
+ };
121
+ };
122
+ };
123
+ buildConfigurationList = 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "AppIceReactPlugin" */;
124
+ compatibilityVersion = "Xcode 3.2";
125
+ developmentRegion = en;
126
+ hasScannedForEncodings = 0;
127
+ knownRegions = (
128
+ en,
129
+ Base,
130
+ );
131
+ mainGroup = 58B511D21A9E6C8500147676;
132
+ productRefGroup = 58B511D21A9E6C8500147676;
133
+ projectDirPath = "";
134
+ projectRoot = "";
135
+ targets = (
136
+ 58B511DA1A9E6C8500147676 /* AppIceReactPlugin */,
137
+ );
138
+ };
139
+ /* End PBXProject section */
140
+
141
+ /* Begin PBXShellScriptBuildPhase section */
142
+ E1D838F5C954732D315E9EB3 /* [CP] Check Pods Manifest.lock */ = {
143
+ isa = PBXShellScriptBuildPhase;
144
+ buildActionMask = 2147483647;
145
+ files = (
146
+ );
147
+ inputFileListPaths = (
148
+ );
149
+ inputPaths = (
150
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
151
+ "${PODS_ROOT}/Manifest.lock",
152
+ );
153
+ name = "[CP] Check Pods Manifest.lock";
154
+ outputFileListPaths = (
155
+ );
156
+ outputPaths = (
157
+ "$(DERIVED_FILE_DIR)/Pods-AppIceReactPlugin-checkManifestLockResult.txt",
158
+ );
159
+ runOnlyForDeploymentPostprocessing = 0;
160
+ shellPath = /bin/sh;
161
+ 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";
162
+ showEnvVarsInLog = 0;
163
+ };
164
+ /* End PBXShellScriptBuildPhase section */
165
+
166
+ /* Begin PBXSourcesBuildPhase section */
167
+ 58B511D71A9E6C8500147676 /* Sources */ = {
168
+ isa = PBXSourcesBuildPhase;
169
+ buildActionMask = 2147483647;
170
+ files = (
171
+ BB66EA6428A256F3008EF447 /* AppICEReactEvent.m in Sources */,
172
+ 404FB02224862CC80075A49E /* AppIceReactPlugin.m in Sources */,
173
+ );
174
+ runOnlyForDeploymentPostprocessing = 0;
175
+ };
176
+ /* End PBXSourcesBuildPhase section */
177
+
178
+ /* Begin XCBuildConfiguration section */
179
+ 58B511ED1A9E6C8500147676 /* Debug */ = {
180
+ isa = XCBuildConfiguration;
181
+ buildSettings = {
182
+ ALWAYS_SEARCH_USER_PATHS = NO;
183
+ CLANG_ANALYZER_NONNULL = YES;
184
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
185
+ CLANG_CXX_LIBRARY = "libc++";
186
+ CLANG_ENABLE_MODULES = YES;
187
+ CLANG_ENABLE_OBJC_ARC = YES;
188
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
189
+ CLANG_WARN_BOOL_CONVERSION = YES;
190
+ CLANG_WARN_COMMA = YES;
191
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
192
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
193
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
194
+ CLANG_WARN_EMPTY_BODY = YES;
195
+ CLANG_WARN_ENUM_CONVERSION = YES;
196
+ CLANG_WARN_INFINITE_RECURSION = YES;
197
+ CLANG_WARN_INT_CONVERSION = YES;
198
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
199
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
200
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
201
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
202
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
203
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
204
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
205
+ CLANG_WARN_UNREACHABLE_CODE = YES;
206
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
207
+ COPY_PHASE_STRIP = NO;
208
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
209
+ ENABLE_TESTABILITY = YES;
210
+ GCC_C_LANGUAGE_STANDARD = gnu99;
211
+ GCC_DYNAMIC_NO_PIC = NO;
212
+ GCC_NO_COMMON_BLOCKS = YES;
213
+ GCC_OPTIMIZATION_LEVEL = 0;
214
+ GCC_PREPROCESSOR_DEFINITIONS = (
215
+ "DEBUG=1",
216
+ "$(inherited)",
217
+ );
218
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
219
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
220
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
221
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
222
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
223
+ GCC_WARN_UNUSED_FUNCTION = YES;
224
+ GCC_WARN_UNUSED_VARIABLE = YES;
225
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
226
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
227
+ LIBRARY_SEARCH_PATHS = (
228
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
229
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
230
+ "\"$(inherited)\"",
231
+ );
232
+ MTL_ENABLE_DEBUG_INFO = YES;
233
+ ONLY_ACTIVE_ARCH = YES;
234
+ SDKROOT = iphoneos;
235
+ };
236
+ name = Debug;
237
+ };
238
+ 58B511EE1A9E6C8500147676 /* Release */ = {
239
+ isa = XCBuildConfiguration;
240
+ buildSettings = {
241
+ ALWAYS_SEARCH_USER_PATHS = NO;
242
+ CLANG_ANALYZER_NONNULL = YES;
243
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
244
+ CLANG_CXX_LIBRARY = "libc++";
245
+ CLANG_ENABLE_MODULES = YES;
246
+ CLANG_ENABLE_OBJC_ARC = YES;
247
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
248
+ CLANG_WARN_BOOL_CONVERSION = YES;
249
+ CLANG_WARN_COMMA = YES;
250
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
251
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
252
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
253
+ CLANG_WARN_EMPTY_BODY = YES;
254
+ CLANG_WARN_ENUM_CONVERSION = YES;
255
+ CLANG_WARN_INFINITE_RECURSION = YES;
256
+ CLANG_WARN_INT_CONVERSION = YES;
257
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
258
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
259
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
260
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
261
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
262
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
263
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
264
+ CLANG_WARN_UNREACHABLE_CODE = YES;
265
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
266
+ COPY_PHASE_STRIP = YES;
267
+ ENABLE_NS_ASSERTIONS = NO;
268
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
269
+ GCC_C_LANGUAGE_STANDARD = gnu99;
270
+ GCC_NO_COMMON_BLOCKS = YES;
271
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
272
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
273
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
274
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
275
+ GCC_WARN_UNUSED_FUNCTION = YES;
276
+ GCC_WARN_UNUSED_VARIABLE = YES;
277
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
278
+ LD_RUNPATH_SEARCH_PATHS = "/usr/lib/swift $(inherited)";
279
+ LIBRARY_SEARCH_PATHS = (
280
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
281
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"",
282
+ "\"$(inherited)\"",
283
+ );
284
+ MTL_ENABLE_DEBUG_INFO = NO;
285
+ SDKROOT = iphoneos;
286
+ VALIDATE_PRODUCT = YES;
287
+ };
288
+ name = Release;
289
+ };
290
+ 58B511F01A9E6C8500147676 /* Debug */ = {
291
+ isa = XCBuildConfiguration;
292
+ baseConfigurationReference = F1849A6B1F6169CACAE96561 /* Pods-AppIceReactPlugin.debug.xcconfig */;
293
+ buildSettings = {
294
+ FRAMEWORK_SEARCH_PATHS = (
295
+ "$(inherited)",
296
+ "$(PROJECT_DIR)/AppICESDK/include/iosAppiceSDK",
297
+ "$(PROJECT_DIR)",
298
+ );
299
+ HEADER_SEARCH_PATHS = (
300
+ "$(inherited)",
301
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
302
+ "$(SRCROOT)/../../../React/**",
303
+ "$(SRCROOT)/../../react-native/React/**",
304
+ );
305
+ LIBRARY_SEARCH_PATHS = (
306
+ "$(inherited)",
307
+ "$(PROJECT_DIR)/AppICESDK",
308
+ );
309
+ OTHER_LDFLAGS = "-ObjC";
310
+ PRODUCT_NAME = AppIceReactPlugin;
311
+ SKIP_INSTALL = YES;
312
+ };
313
+ name = Debug;
314
+ };
315
+ 58B511F11A9E6C8500147676 /* Release */ = {
316
+ isa = XCBuildConfiguration;
317
+ baseConfigurationReference = C309D58EF84CFCAE1F2DABE9 /* Pods-AppIceReactPlugin.release.xcconfig */;
318
+ buildSettings = {
319
+ FRAMEWORK_SEARCH_PATHS = (
320
+ "$(inherited)",
321
+ "$(PROJECT_DIR)/AppICESDK/include/iosAppiceSDK",
322
+ "$(PROJECT_DIR)",
323
+ );
324
+ HEADER_SEARCH_PATHS = (
325
+ "$(inherited)",
326
+ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include,
327
+ "$(SRCROOT)/../../../React/**",
328
+ "$(SRCROOT)/../../react-native/React/**",
329
+ );
330
+ LIBRARY_SEARCH_PATHS = (
331
+ "$(inherited)",
332
+ "$(PROJECT_DIR)/AppICESDK",
333
+ );
334
+ OTHER_LDFLAGS = "-ObjC";
335
+ PRODUCT_NAME = AppIceReactPlugin;
336
+ SKIP_INSTALL = YES;
337
+ };
338
+ name = Release;
339
+ };
340
+ /* End XCBuildConfiguration section */
341
+
342
+ /* Begin XCConfigurationList section */
343
+ 58B511D61A9E6C8500147676 /* Build configuration list for PBXProject "AppIceReactPlugin" */ = {
344
+ isa = XCConfigurationList;
345
+ buildConfigurations = (
346
+ 58B511ED1A9E6C8500147676 /* Debug */,
347
+ 58B511EE1A9E6C8500147676 /* Release */,
348
+ );
349
+ defaultConfigurationIsVisible = 0;
350
+ defaultConfigurationName = Release;
351
+ };
352
+ 58B511EF1A9E6C8500147676 /* Build configuration list for PBXNativeTarget "AppIceReactPlugin" */ = {
353
+ isa = XCConfigurationList;
354
+ buildConfigurations = (
355
+ 58B511F01A9E6C8500147676 /* Debug */,
356
+ 58B511F11A9E6C8500147676 /* Release */,
357
+ );
358
+ defaultConfigurationIsVisible = 0;
359
+ defaultConfigurationName = Release;
360
+ };
361
+ /* End XCConfigurationList section */
362
+ };
363
+ rootObject = 58B511D31A9E6C8500147676 /* Project object */;
364
+ }