jcore-react-native 1.9.5 → 1.9.6

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 (87) hide show
  1. package/.vscode/settings.json +3 -0
  2. package/android/.gradle/7.1.1/dependencies-accessors/dependencies-accessors.lock +0 -0
  3. package/android/.gradle/7.1.1/dependencies-accessors/gc.properties +0 -0
  4. package/android/.gradle/7.1.1/fileChanges/last-build.bin +0 -0
  5. package/android/.gradle/7.1.1/fileHashes/fileHashes.lock +0 -0
  6. package/android/.gradle/7.1.1/gc.properties +0 -0
  7. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  8. package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
  9. package/android/.gradle/checksums/checksums.lock +0 -0
  10. package/android/.gradle/vcs-1/gc.properties +0 -0
  11. package/android/libs/arm64-v8a/{libjcore310.so → libjcore322.so} +0 -0
  12. package/android/libs/armeabi/{libjcore310.so → libjcore322.so} +0 -0
  13. package/android/libs/armeabi-v7a/{libjcore310.so → libjcore322.so} +0 -0
  14. package/android/libs/jcore-android-3.2.2.jar +0 -0
  15. package/android/libs/mips/{libjcore310.so → libjcore322.so} +0 -0
  16. package/android/libs/mips64/{libjcore310.so → libjcore322.so} +0 -0
  17. package/android/libs/x86/{libjcore310.so → libjcore322.so} +0 -0
  18. package/android/libs/x86_64/{libjcore310.so → libjcore322.so} +0 -0
  19. package/android/src/main/java/cn/jiguang/plugins/core/JCoreModule.java +48 -0
  20. package/android/src/main/java/cn/jiguang/plugins/core/JCorePackage.java +27 -0
  21. package/example/.buckconfig +6 -0
  22. package/example/.bundle/config +2 -0
  23. package/example/.eslintrc.js +4 -0
  24. package/example/.flowconfig +65 -0
  25. package/example/.prettierrc.js +7 -0
  26. package/example/.ruby-version +1 -0
  27. package/example/.watchmanconfig +1 -0
  28. package/example/App.js +112 -0
  29. package/example/Gemfile +6 -0
  30. package/example/__tests__/App-test.js +14 -0
  31. package/example/android/app/BUCK +55 -0
  32. package/example/android/app/build.gradle +227 -0
  33. package/example/android/app/build_defs.bzl +19 -0
  34. package/example/android/app/debug.keystore +0 -0
  35. package/example/android/app/proguard-rules.pro +10 -0
  36. package/example/android/app/src/debug/AndroidManifest.xml +13 -0
  37. package/example/android/app/src/debug/java/com/example/ReactNativeFlipper.java +72 -0
  38. package/example/android/app/src/main/AndroidManifest.xml +25 -0
  39. package/example/android/app/src/main/java/com/example/MainActivity.java +15 -0
  40. package/example/android/app/src/main/java/com/example/MainApplication.java +80 -0
  41. package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
  42. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  43. package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  44. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  45. package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  46. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  47. package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  48. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  49. package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  50. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  51. package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  52. package/example/android/app/src/main/res/values/strings.xml +3 -0
  53. package/example/android/app/src/main/res/values/styles.xml +9 -0
  54. package/example/android/build.gradle +42 -0
  55. package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  56. package/example/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  57. package/example/android/gradlew +185 -0
  58. package/example/android/gradlew.bat +89 -0
  59. package/example/android/settings.gradle +3 -0
  60. package/example/app.json +4 -0
  61. package/example/babel.config.js +3 -0
  62. package/example/index.js +9 -0
  63. package/example/ios/Podfile +30 -0
  64. package/example/ios/example/AppDelegate.h +8 -0
  65. package/example/ios/example/AppDelegate.m +62 -0
  66. package/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
  67. package/example/ios/example/Images.xcassets/Contents.json +6 -0
  68. package/example/ios/example/Info.plist +55 -0
  69. package/example/ios/example/LaunchScreen.storyboard +47 -0
  70. package/example/ios/example/main.m +9 -0
  71. package/example/ios/example.xcodeproj/project.pbxproj +540 -0
  72. package/example/ios/example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  73. package/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme +88 -0
  74. package/example/ios/exampleTests/Info.plist +24 -0
  75. package/example/ios/exampleTests/exampleTests.m +65 -0
  76. package/example/metro.config.js +17 -0
  77. package/example/package.json +30 -0
  78. package/index.js +16 -0
  79. package/ios/RCTJCoreModule/Lib/JGInforCollectionAuth.h +27 -0
  80. package/ios/RCTJCoreModule/{libjcore-ios-2.7.1.a → Lib/jcore-ios-3.2.1.a} +0 -0
  81. package/ios/RCTJCoreModule/RCTJCoreModule.h +13 -1
  82. package/ios/RCTJCoreModule/RCTJCoreModule.m +15 -0
  83. package/ios/RCTJCoreModule.xcodeproj/project.pbxproj +12 -4
  84. package/ios/RCTJCoreModule.xcodeproj/project.xcworkspace/xcuserdata/douban.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  85. package/ios/RCTJCoreModule.xcodeproj/xcuserdata/douban.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  86. package/package.json +1 -1
  87. package/android/libs/jcore-android-3.1.0.jar +0 -0
@@ -0,0 +1,540 @@
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.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
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
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
15
+ /* End PBXBuildFile section */
16
+
17
+ /* Begin PBXContainerItemProxy section */
18
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
19
+ isa = PBXContainerItemProxy;
20
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
21
+ proxyType = 1;
22
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
23
+ remoteInfo = example;
24
+ };
25
+ /* End PBXContainerItemProxy section */
26
+
27
+ /* Begin PBXFileReference section */
28
+ 00E356EE1AD99517003FC87E /* exampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = exampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
29
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
30
+ 00E356F21AD99517003FC87E /* exampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = exampleTests.m; sourceTree = "<group>"; };
31
+ 13B07F961A680F5B00A75B9A /* example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = example.app; sourceTree = BUILT_PRODUCTS_DIR; };
32
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = example/AppDelegate.h; sourceTree = "<group>"; };
33
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = example/AppDelegate.m; sourceTree = "<group>"; };
34
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = example/Images.xcassets; sourceTree = "<group>"; };
35
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = example/Info.plist; sourceTree = "<group>"; };
36
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = example/main.m; sourceTree = "<group>"; };
37
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = example/LaunchScreen.storyboard; sourceTree = "<group>"; };
38
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
39
+ /* End PBXFileReference section */
40
+
41
+ /* Begin PBXFrameworksBuildPhase section */
42
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
43
+ isa = PBXFrameworksBuildPhase;
44
+ buildActionMask = 2147483647;
45
+ files = (
46
+ );
47
+ runOnlyForDeploymentPostprocessing = 0;
48
+ };
49
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
50
+ isa = PBXFrameworksBuildPhase;
51
+ buildActionMask = 2147483647;
52
+ files = (
53
+ );
54
+ runOnlyForDeploymentPostprocessing = 0;
55
+ };
56
+ /* End PBXFrameworksBuildPhase section */
57
+
58
+ /* Begin PBXGroup section */
59
+ 00E356EF1AD99517003FC87E /* exampleTests */ = {
60
+ isa = PBXGroup;
61
+ children = (
62
+ 00E356F21AD99517003FC87E /* exampleTests.m */,
63
+ 00E356F01AD99517003FC87E /* Supporting Files */,
64
+ );
65
+ path = exampleTests;
66
+ sourceTree = "<group>";
67
+ };
68
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
69
+ isa = PBXGroup;
70
+ children = (
71
+ 00E356F11AD99517003FC87E /* Info.plist */,
72
+ );
73
+ name = "Supporting Files";
74
+ sourceTree = "<group>";
75
+ };
76
+ 13B07FAE1A68108700A75B9A /* example */ = {
77
+ isa = PBXGroup;
78
+ children = (
79
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
80
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */,
81
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
82
+ 13B07FB61A68108700A75B9A /* Info.plist */,
83
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
84
+ 13B07FB71A68108700A75B9A /* main.m */,
85
+ );
86
+ name = example;
87
+ sourceTree = "<group>";
88
+ };
89
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
90
+ isa = PBXGroup;
91
+ children = (
92
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
93
+ );
94
+ name = Frameworks;
95
+ sourceTree = "<group>";
96
+ };
97
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
98
+ isa = PBXGroup;
99
+ children = (
100
+ );
101
+ name = Libraries;
102
+ sourceTree = "<group>";
103
+ };
104
+ 83CBB9F61A601CBA00E9B192 = {
105
+ isa = PBXGroup;
106
+ children = (
107
+ 13B07FAE1A68108700A75B9A /* example */,
108
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
109
+ 00E356EF1AD99517003FC87E /* exampleTests */,
110
+ 83CBBA001A601CBA00E9B192 /* Products */,
111
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
112
+ );
113
+ indentWidth = 2;
114
+ sourceTree = "<group>";
115
+ tabWidth = 2;
116
+ usesTabs = 0;
117
+ };
118
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
119
+ isa = PBXGroup;
120
+ children = (
121
+ 13B07F961A680F5B00A75B9A /* example.app */,
122
+ 00E356EE1AD99517003FC87E /* exampleTests.xctest */,
123
+ );
124
+ name = Products;
125
+ sourceTree = "<group>";
126
+ };
127
+ /* End PBXGroup section */
128
+
129
+ /* Begin PBXNativeTarget section */
130
+ 00E356ED1AD99517003FC87E /* exampleTests */ = {
131
+ isa = PBXNativeTarget;
132
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */;
133
+ buildPhases = (
134
+ 00E356EA1AD99517003FC87E /* Sources */,
135
+ 00E356EB1AD99517003FC87E /* Frameworks */,
136
+ 00E356EC1AD99517003FC87E /* Resources */,
137
+ );
138
+ buildRules = (
139
+ );
140
+ dependencies = (
141
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
142
+ );
143
+ name = exampleTests;
144
+ productName = exampleTests;
145
+ productReference = 00E356EE1AD99517003FC87E /* exampleTests.xctest */;
146
+ productType = "com.apple.product-type.bundle.unit-test";
147
+ };
148
+ 13B07F861A680F5B00A75B9A /* example */ = {
149
+ isa = PBXNativeTarget;
150
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */;
151
+ buildPhases = (
152
+ FD10A7F022414F080027D42C /* Start Packager */,
153
+ 13B07F871A680F5B00A75B9A /* Sources */,
154
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
155
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
156
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
157
+ );
158
+ buildRules = (
159
+ );
160
+ dependencies = (
161
+ );
162
+ name = example;
163
+ productName = example;
164
+ productReference = 13B07F961A680F5B00A75B9A /* example.app */;
165
+ productType = "com.apple.product-type.application";
166
+ };
167
+ /* End PBXNativeTarget section */
168
+
169
+ /* Begin PBXProject section */
170
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
171
+ isa = PBXProject;
172
+ attributes = {
173
+ LastUpgradeCheck = 1210;
174
+ TargetAttributes = {
175
+ 00E356ED1AD99517003FC87E = {
176
+ CreatedOnToolsVersion = 6.2;
177
+ TestTargetID = 13B07F861A680F5B00A75B9A;
178
+ };
179
+ 13B07F861A680F5B00A75B9A = {
180
+ LastSwiftMigration = 1120;
181
+ };
182
+ };
183
+ };
184
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */;
185
+ compatibilityVersion = "Xcode 12.0";
186
+ developmentRegion = en;
187
+ hasScannedForEncodings = 0;
188
+ knownRegions = (
189
+ en,
190
+ Base,
191
+ );
192
+ mainGroup = 83CBB9F61A601CBA00E9B192;
193
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
194
+ projectDirPath = "";
195
+ projectRoot = "";
196
+ targets = (
197
+ 13B07F861A680F5B00A75B9A /* example */,
198
+ 00E356ED1AD99517003FC87E /* exampleTests */,
199
+ );
200
+ };
201
+ /* End PBXProject section */
202
+
203
+ /* Begin PBXResourcesBuildPhase section */
204
+ 00E356EC1AD99517003FC87E /* Resources */ = {
205
+ isa = PBXResourcesBuildPhase;
206
+ buildActionMask = 2147483647;
207
+ files = (
208
+ );
209
+ runOnlyForDeploymentPostprocessing = 0;
210
+ };
211
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
212
+ isa = PBXResourcesBuildPhase;
213
+ buildActionMask = 2147483647;
214
+ files = (
215
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
216
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
217
+ );
218
+ runOnlyForDeploymentPostprocessing = 0;
219
+ };
220
+ /* End PBXResourcesBuildPhase section */
221
+
222
+ /* Begin PBXShellScriptBuildPhase section */
223
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
224
+ isa = PBXShellScriptBuildPhase;
225
+ buildActionMask = 2147483647;
226
+ files = (
227
+ );
228
+ inputPaths = (
229
+ );
230
+ name = "Bundle React Native code and images";
231
+ outputPaths = (
232
+ );
233
+ runOnlyForDeploymentPostprocessing = 0;
234
+ shellPath = /bin/sh;
235
+ shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
236
+ };
237
+ FD10A7F022414F080027D42C /* Start Packager */ = {
238
+ isa = PBXShellScriptBuildPhase;
239
+ buildActionMask = 2147483647;
240
+ files = (
241
+ );
242
+ inputFileListPaths = (
243
+ );
244
+ inputPaths = (
245
+ );
246
+ name = "Start Packager";
247
+ outputFileListPaths = (
248
+ );
249
+ outputPaths = (
250
+ );
251
+ runOnlyForDeploymentPostprocessing = 0;
252
+ shellPath = /bin/sh;
253
+ 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";
254
+ showEnvVarsInLog = 0;
255
+ };
256
+ /* End PBXShellScriptBuildPhase section */
257
+
258
+ /* Begin PBXSourcesBuildPhase section */
259
+ 00E356EA1AD99517003FC87E /* Sources */ = {
260
+ isa = PBXSourcesBuildPhase;
261
+ buildActionMask = 2147483647;
262
+ files = (
263
+ 00E356F31AD99517003FC87E /* exampleTests.m in Sources */,
264
+ );
265
+ runOnlyForDeploymentPostprocessing = 0;
266
+ };
267
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
268
+ isa = PBXSourcesBuildPhase;
269
+ buildActionMask = 2147483647;
270
+ files = (
271
+ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
272
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
273
+ );
274
+ runOnlyForDeploymentPostprocessing = 0;
275
+ };
276
+ /* End PBXSourcesBuildPhase section */
277
+
278
+ /* Begin PBXTargetDependency section */
279
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
280
+ isa = PBXTargetDependency;
281
+ target = 13B07F861A680F5B00A75B9A /* example */;
282
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
283
+ };
284
+ /* End PBXTargetDependency section */
285
+
286
+ /* Begin XCBuildConfiguration section */
287
+ 00E356F61AD99517003FC87E /* Debug */ = {
288
+ isa = XCBuildConfiguration;
289
+ buildSettings = {
290
+ BUNDLE_LOADER = "$(TEST_HOST)";
291
+ GCC_PREPROCESSOR_DEFINITIONS = (
292
+ "DEBUG=1",
293
+ "$(inherited)",
294
+ );
295
+ INFOPLIST_FILE = exampleTests/Info.plist;
296
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
297
+ LD_RUNPATH_SEARCH_PATHS = (
298
+ "$(inherited)",
299
+ "@executable_path/Frameworks",
300
+ "@loader_path/Frameworks",
301
+ );
302
+ OTHER_LDFLAGS = (
303
+ "-ObjC",
304
+ "-lc++",
305
+ "$(inherited)",
306
+ );
307
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
308
+ PRODUCT_NAME = "$(TARGET_NAME)";
309
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
310
+ };
311
+ name = Debug;
312
+ };
313
+ 00E356F71AD99517003FC87E /* Release */ = {
314
+ isa = XCBuildConfiguration;
315
+ buildSettings = {
316
+ BUNDLE_LOADER = "$(TEST_HOST)";
317
+ COPY_PHASE_STRIP = NO;
318
+ INFOPLIST_FILE = exampleTests/Info.plist;
319
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
320
+ LD_RUNPATH_SEARCH_PATHS = (
321
+ "$(inherited)",
322
+ "@executable_path/Frameworks",
323
+ "@loader_path/Frameworks",
324
+ );
325
+ OTHER_LDFLAGS = (
326
+ "-ObjC",
327
+ "-lc++",
328
+ "$(inherited)",
329
+ );
330
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
331
+ PRODUCT_NAME = "$(TARGET_NAME)";
332
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/example.app/example";
333
+ };
334
+ name = Release;
335
+ };
336
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
337
+ isa = XCBuildConfiguration;
338
+ buildSettings = {
339
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
340
+ CLANG_ENABLE_MODULES = YES;
341
+ CURRENT_PROJECT_VERSION = 1;
342
+ DEVELOPMENT_TEAM = 8X2A38Q9VD;
343
+ ENABLE_BITCODE = NO;
344
+ INFOPLIST_FILE = example/Info.plist;
345
+ LD_RUNPATH_SEARCH_PATHS = (
346
+ "$(inherited)",
347
+ "@executable_path/Frameworks",
348
+ );
349
+ OTHER_LDFLAGS = (
350
+ "$(inherited)",
351
+ "-ObjC",
352
+ "-lc++",
353
+ );
354
+ PRODUCT_BUNDLE_IDENTIFIER = com.jiguang.verification;
355
+ PRODUCT_NAME = example;
356
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
357
+ SWIFT_VERSION = 5.0;
358
+ VERSIONING_SYSTEM = "apple-generic";
359
+ };
360
+ name = Debug;
361
+ };
362
+ 13B07F951A680F5B00A75B9A /* Release */ = {
363
+ isa = XCBuildConfiguration;
364
+ buildSettings = {
365
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
366
+ CLANG_ENABLE_MODULES = YES;
367
+ CURRENT_PROJECT_VERSION = 1;
368
+ DEVELOPMENT_TEAM = 8X2A38Q9VD;
369
+ INFOPLIST_FILE = example/Info.plist;
370
+ LD_RUNPATH_SEARCH_PATHS = (
371
+ "$(inherited)",
372
+ "@executable_path/Frameworks",
373
+ );
374
+ OTHER_LDFLAGS = (
375
+ "$(inherited)",
376
+ "-ObjC",
377
+ "-lc++",
378
+ );
379
+ PRODUCT_BUNDLE_IDENTIFIER = com.jiguang.verification;
380
+ PRODUCT_NAME = example;
381
+ SWIFT_VERSION = 5.0;
382
+ VERSIONING_SYSTEM = "apple-generic";
383
+ };
384
+ name = Release;
385
+ };
386
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
387
+ isa = XCBuildConfiguration;
388
+ buildSettings = {
389
+ ALWAYS_SEARCH_USER_PATHS = NO;
390
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
391
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
392
+ CLANG_CXX_LIBRARY = "libc++";
393
+ CLANG_ENABLE_MODULES = YES;
394
+ CLANG_ENABLE_OBJC_ARC = YES;
395
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
396
+ CLANG_WARN_BOOL_CONVERSION = YES;
397
+ CLANG_WARN_COMMA = YES;
398
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
399
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
400
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
401
+ CLANG_WARN_EMPTY_BODY = YES;
402
+ CLANG_WARN_ENUM_CONVERSION = YES;
403
+ CLANG_WARN_INFINITE_RECURSION = YES;
404
+ CLANG_WARN_INT_CONVERSION = YES;
405
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
406
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
407
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
408
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
409
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
410
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
411
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
412
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
413
+ CLANG_WARN_UNREACHABLE_CODE = YES;
414
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
415
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
416
+ COPY_PHASE_STRIP = NO;
417
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
418
+ ENABLE_TESTABILITY = YES;
419
+ GCC_C_LANGUAGE_STANDARD = gnu99;
420
+ GCC_DYNAMIC_NO_PIC = NO;
421
+ GCC_NO_COMMON_BLOCKS = YES;
422
+ GCC_OPTIMIZATION_LEVEL = 0;
423
+ GCC_PREPROCESSOR_DEFINITIONS = (
424
+ "DEBUG=1",
425
+ "$(inherited)",
426
+ );
427
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
428
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
429
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
430
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
431
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
432
+ GCC_WARN_UNUSED_FUNCTION = YES;
433
+ GCC_WARN_UNUSED_VARIABLE = YES;
434
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
435
+ LD_RUNPATH_SEARCH_PATHS = (
436
+ /usr/lib/swift,
437
+ "$(inherited)",
438
+ );
439
+ LIBRARY_SEARCH_PATHS = (
440
+ "\"$(SDKROOT)/usr/lib/swift\"",
441
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
442
+ "\"$(inherited)\"",
443
+ );
444
+ MTL_ENABLE_DEBUG_INFO = YES;
445
+ ONLY_ACTIVE_ARCH = YES;
446
+ SDKROOT = iphoneos;
447
+ };
448
+ name = Debug;
449
+ };
450
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
451
+ isa = XCBuildConfiguration;
452
+ buildSettings = {
453
+ ALWAYS_SEARCH_USER_PATHS = NO;
454
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
455
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
456
+ CLANG_CXX_LIBRARY = "libc++";
457
+ CLANG_ENABLE_MODULES = YES;
458
+ CLANG_ENABLE_OBJC_ARC = YES;
459
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
460
+ CLANG_WARN_BOOL_CONVERSION = YES;
461
+ CLANG_WARN_COMMA = YES;
462
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
463
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
464
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
465
+ CLANG_WARN_EMPTY_BODY = YES;
466
+ CLANG_WARN_ENUM_CONVERSION = YES;
467
+ CLANG_WARN_INFINITE_RECURSION = YES;
468
+ CLANG_WARN_INT_CONVERSION = YES;
469
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
470
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
471
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
472
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
473
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
474
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
475
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
476
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
477
+ CLANG_WARN_UNREACHABLE_CODE = YES;
478
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
479
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
480
+ COPY_PHASE_STRIP = YES;
481
+ ENABLE_NS_ASSERTIONS = NO;
482
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
483
+ GCC_C_LANGUAGE_STANDARD = gnu99;
484
+ GCC_NO_COMMON_BLOCKS = YES;
485
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
486
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
487
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
488
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
489
+ GCC_WARN_UNUSED_FUNCTION = YES;
490
+ GCC_WARN_UNUSED_VARIABLE = YES;
491
+ IPHONEOS_DEPLOYMENT_TARGET = 11.0;
492
+ LD_RUNPATH_SEARCH_PATHS = (
493
+ /usr/lib/swift,
494
+ "$(inherited)",
495
+ );
496
+ LIBRARY_SEARCH_PATHS = (
497
+ "\"$(SDKROOT)/usr/lib/swift\"",
498
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
499
+ "\"$(inherited)\"",
500
+ );
501
+ MTL_ENABLE_DEBUG_INFO = NO;
502
+ SDKROOT = iphoneos;
503
+ VALIDATE_PRODUCT = YES;
504
+ };
505
+ name = Release;
506
+ };
507
+ /* End XCBuildConfiguration section */
508
+
509
+ /* Begin XCConfigurationList section */
510
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "exampleTests" */ = {
511
+ isa = XCConfigurationList;
512
+ buildConfigurations = (
513
+ 00E356F61AD99517003FC87E /* Debug */,
514
+ 00E356F71AD99517003FC87E /* Release */,
515
+ );
516
+ defaultConfigurationIsVisible = 0;
517
+ defaultConfigurationName = Release;
518
+ };
519
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "example" */ = {
520
+ isa = XCConfigurationList;
521
+ buildConfigurations = (
522
+ 13B07F941A680F5B00A75B9A /* Debug */,
523
+ 13B07F951A680F5B00A75B9A /* Release */,
524
+ );
525
+ defaultConfigurationIsVisible = 0;
526
+ defaultConfigurationName = Release;
527
+ };
528
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "example" */ = {
529
+ isa = XCConfigurationList;
530
+ buildConfigurations = (
531
+ 83CBBA201A601CBA00E9B192 /* Debug */,
532
+ 83CBBA211A601CBA00E9B192 /* Release */,
533
+ );
534
+ defaultConfigurationIsVisible = 0;
535
+ defaultConfigurationName = Release;
536
+ };
537
+ /* End XCConfigurationList section */
538
+ };
539
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
540
+ }
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>IDEDidComputeMac32BitWarning</key>
6
+ <true/>
7
+ </dict>
8
+ </plist>
@@ -0,0 +1,88 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Scheme
3
+ LastUpgradeVersion = "1210"
4
+ version = "1.3">
5
+ <BuildAction
6
+ parallelizeBuildables = "YES"
7
+ buildImplicitDependencies = "YES">
8
+ <BuildActionEntries>
9
+ <BuildActionEntry
10
+ buildForTesting = "YES"
11
+ buildForRunning = "YES"
12
+ buildForProfiling = "YES"
13
+ buildForArchiving = "YES"
14
+ buildForAnalyzing = "YES">
15
+ <BuildableReference
16
+ BuildableIdentifier = "primary"
17
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
18
+ BuildableName = "example.app"
19
+ BlueprintName = "example"
20
+ ReferencedContainer = "container:example.xcodeproj">
21
+ </BuildableReference>
22
+ </BuildActionEntry>
23
+ </BuildActionEntries>
24
+ </BuildAction>
25
+ <TestAction
26
+ buildConfiguration = "Debug"
27
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29
+ shouldUseLaunchSchemeArgsEnv = "YES">
30
+ <Testables>
31
+ <TestableReference
32
+ skipped = "NO">
33
+ <BuildableReference
34
+ BuildableIdentifier = "primary"
35
+ BlueprintIdentifier = "00E356ED1AD99517003FC87E"
36
+ BuildableName = "exampleTests.xctest"
37
+ BlueprintName = "exampleTests"
38
+ ReferencedContainer = "container:example.xcodeproj">
39
+ </BuildableReference>
40
+ </TestableReference>
41
+ </Testables>
42
+ </TestAction>
43
+ <LaunchAction
44
+ buildConfiguration = "Debug"
45
+ selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
46
+ selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
47
+ launchStyle = "0"
48
+ useCustomWorkingDirectory = "NO"
49
+ ignoresPersistentStateOnLaunch = "NO"
50
+ debugDocumentVersioning = "YES"
51
+ debugServiceExtension = "internal"
52
+ allowLocationSimulation = "YES">
53
+ <BuildableProductRunnable
54
+ runnableDebuggingMode = "0">
55
+ <BuildableReference
56
+ BuildableIdentifier = "primary"
57
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
58
+ BuildableName = "example.app"
59
+ BlueprintName = "example"
60
+ ReferencedContainer = "container:example.xcodeproj">
61
+ </BuildableReference>
62
+ </BuildableProductRunnable>
63
+ </LaunchAction>
64
+ <ProfileAction
65
+ buildConfiguration = "Release"
66
+ shouldUseLaunchSchemeArgsEnv = "YES"
67
+ savedToolIdentifier = ""
68
+ useCustomWorkingDirectory = "NO"
69
+ debugDocumentVersioning = "YES">
70
+ <BuildableProductRunnable
71
+ runnableDebuggingMode = "0">
72
+ <BuildableReference
73
+ BuildableIdentifier = "primary"
74
+ BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
75
+ BuildableName = "example.app"
76
+ BlueprintName = "example"
77
+ ReferencedContainer = "container:example.xcodeproj">
78
+ </BuildableReference>
79
+ </BuildableProductRunnable>
80
+ </ProfileAction>
81
+ <AnalyzeAction
82
+ buildConfiguration = "Debug">
83
+ </AnalyzeAction>
84
+ <ArchiveAction
85
+ buildConfiguration = "Release"
86
+ revealArchiveInOrganizer = "YES">
87
+ </ArchiveAction>
88
+ </Scheme>
@@ -0,0 +1,24 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleExecutable</key>
8
+ <string>$(EXECUTABLE_NAME)</string>
9
+ <key>CFBundleIdentifier</key>
10
+ <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11
+ <key>CFBundleInfoDictionaryVersion</key>
12
+ <string>6.0</string>
13
+ <key>CFBundleName</key>
14
+ <string>$(PRODUCT_NAME)</string>
15
+ <key>CFBundlePackageType</key>
16
+ <string>BNDL</string>
17
+ <key>CFBundleShortVersionString</key>
18
+ <string>1.0</string>
19
+ <key>CFBundleSignature</key>
20
+ <string>????</string>
21
+ <key>CFBundleVersion</key>
22
+ <string>1</string>
23
+ </dict>
24
+ </plist>