react-native-pointr 9.2.0 → 9.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/API_REFERENCE.md +887 -0
  2. package/CHANGELOG.md +35 -0
  3. package/EXTENDING.md +419 -0
  4. package/README.md +221 -117
  5. package/WAYFINDING_EVENTS.md +243 -0
  6. package/android/build.gradle +3 -4
  7. package/android/src/main/java/com/pointr/PTRCoreExtensions.kt +126 -0
  8. package/android/src/main/java/com/pointr/PTRMapWidgetCommandType.kt +2 -1
  9. package/android/src/main/java/com/pointr/PTRMapWidgetManager.kt +73 -11
  10. package/android/src/main/java/com/pointr/PointrModule.kt +106 -3
  11. package/example/pointr_rn_demo/.bundle/config +2 -0
  12. package/example/pointr_rn_demo/.eslintrc.js +4 -0
  13. package/example/pointr_rn_demo/.prettierrc.js +5 -0
  14. package/example/pointr_rn_demo/.watchmanconfig +1 -0
  15. package/example/pointr_rn_demo/App.tsx +323 -0
  16. package/example/pointr_rn_demo/Gemfile +16 -0
  17. package/example/pointr_rn_demo/Gemfile.lock +111 -0
  18. package/example/pointr_rn_demo/README.md +188 -0
  19. package/example/pointr_rn_demo/__tests__/App.test.tsx +13 -0
  20. package/example/pointr_rn_demo/android/app/build.gradle +119 -0
  21. package/example/pointr_rn_demo/android/app/debug.keystore +0 -0
  22. package/example/pointr_rn_demo/android/app/proguard-rules.pro +10 -0
  23. package/example/pointr_rn_demo/android/app/src/main/AndroidManifest.xml +27 -0
  24. package/example/pointr_rn_demo/android/app/src/main/java/com/pointr_rn_demo/MainActivity.kt +22 -0
  25. package/example/pointr_rn_demo/android/app/src/main/java/com/pointr_rn_demo/MainApplication.kt +27 -0
  26. package/example/pointr_rn_demo/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  27. package/example/pointr_rn_demo/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  28. package/example/pointr_rn_demo/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  29. package/example/pointr_rn_demo/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  30. package/example/pointr_rn_demo/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  31. package/example/pointr_rn_demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  32. package/example/pointr_rn_demo/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  33. package/example/pointr_rn_demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  34. package/example/pointr_rn_demo/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  35. package/example/pointr_rn_demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  36. package/example/pointr_rn_demo/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  37. package/example/pointr_rn_demo/android/app/src/main/res/values/strings.xml +3 -0
  38. package/example/pointr_rn_demo/android/app/src/main/res/values/styles.xml +9 -0
  39. package/example/pointr_rn_demo/android/build.gradle +32 -0
  40. package/example/pointr_rn_demo/android/gradle.properties +44 -0
  41. package/example/pointr_rn_demo/android/settings.gradle +6 -0
  42. package/example/pointr_rn_demo/app.json +4 -0
  43. package/example/pointr_rn_demo/babel.config.js +3 -0
  44. package/example/pointr_rn_demo/index.js +16 -0
  45. package/example/pointr_rn_demo/ios/.xcode.env +11 -0
  46. package/example/pointr_rn_demo/ios/Podfile +40 -0
  47. package/example/pointr_rn_demo/ios/Podfile.lock +2767 -0
  48. package/example/pointr_rn_demo/ios/pointr_rn_demo/AppDelegate.swift +48 -0
  49. package/example/pointr_rn_demo/ios/pointr_rn_demo/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  50. package/example/pointr_rn_demo/ios/pointr_rn_demo/Images.xcassets/Contents.json +6 -0
  51. package/example/pointr_rn_demo/ios/pointr_rn_demo/Info.plist +63 -0
  52. package/example/pointr_rn_demo/ios/pointr_rn_demo/LaunchScreen.storyboard +47 -0
  53. package/example/pointr_rn_demo/ios/pointr_rn_demo/PrivacyInfo.xcprivacy +37 -0
  54. package/example/pointr_rn_demo/ios/pointr_rn_demo.xcodeproj/project.pbxproj +496 -0
  55. package/example/pointr_rn_demo/ios/pointr_rn_demo.xcodeproj/xcshareddata/xcschemes/pointr_rn_demo.xcscheme +88 -0
  56. package/example/pointr_rn_demo/ios/pointr_rn_demo.xcworkspace/contents.xcworkspacedata +10 -0
  57. package/example/pointr_rn_demo/jest.config.js +3 -0
  58. package/example/pointr_rn_demo/metro.config.js +22 -0
  59. package/example/pointr_rn_demo/package-lock.json +11747 -0
  60. package/example/pointr_rn_demo/package.json +46 -0
  61. package/example/pointr_rn_demo/prepare-demo-distribution.sh +103 -0
  62. package/example/pointr_rn_demo/tsconfig.json +5 -0
  63. package/ios/PTRMapWidgetContainerView.swift +56 -5
  64. package/ios/PTRMapWidgetManager-Bridging.m +7 -0
  65. package/ios/PTRMapWidgetManager.swift +28 -0
  66. package/ios/PTRNativeLibrary-Bridging.m +4 -0
  67. package/ios/PTRNativeLibrary.swift +208 -2
  68. package/package.json +16 -2
  69. package/prepare-distribution.sh +84 -0
  70. package/react-native-pointr.podspec +1 -1
  71. package/src/PTRCommand.ts +13 -0
  72. package/src/PTRMapWidgetUtils.ts +10 -1
  73. package/src/PTRPoiManager.ts +20 -0
  74. package/src/index.tsx +40 -1
  75. package/src/types/PTRGeometry.ts +70 -0
  76. package/src/types/PTRPoi.ts +49 -0
  77. package/src/types/PTRPosition.ts +22 -0
  78. package/src/types/PTRWayfindingEvent.ts +18 -0
@@ -0,0 +1,496 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
11
+ 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
12
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
13
+ 977EC326A89D4D5231848876 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
14
+ 9F6D340639DD38BD77A309C6 /* libPods-pointr_rn_demo.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 661BE1092D84169EF119A692 /* libPods-pointr_rn_demo.a */; };
15
+ /* End PBXBuildFile section */
16
+
17
+ /* Begin PBXFileReference section */
18
+ 13B07F961A680F5B00A75B9A /* pointr_rn_demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = pointr_rn_demo.app; sourceTree = BUILT_PRODUCTS_DIR; };
19
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = pointr_rn_demo/Images.xcassets; sourceTree = "<group>"; };
20
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = pointr_rn_demo/Info.plist; sourceTree = "<group>"; };
21
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = pointr_rn_demo/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
22
+ 4975DAFF47C7C30AF8A1D4FC /* Pods-pointr_rn_demo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-pointr_rn_demo.debug.xcconfig"; path = "Target Support Files/Pods-pointr_rn_demo/Pods-pointr_rn_demo.debug.xcconfig"; sourceTree = "<group>"; };
23
+ 661BE1092D84169EF119A692 /* libPods-pointr_rn_demo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-pointr_rn_demo.a"; sourceTree = BUILT_PRODUCTS_DIR; };
24
+ 761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = pointr_rn_demo/AppDelegate.swift; sourceTree = "<group>"; };
25
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = pointr_rn_demo/LaunchScreen.storyboard; sourceTree = "<group>"; };
26
+ A33B81E86BAD8EE15135848F /* Pods-pointr_rn_demo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-pointr_rn_demo.release.xcconfig"; path = "Target Support Files/Pods-pointr_rn_demo/Pods-pointr_rn_demo.release.xcconfig"; sourceTree = "<group>"; };
27
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
28
+ /* End PBXFileReference section */
29
+
30
+ /* Begin PBXFrameworksBuildPhase section */
31
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
32
+ isa = PBXFrameworksBuildPhase;
33
+ buildActionMask = 2147483647;
34
+ files = (
35
+ 9F6D340639DD38BD77A309C6 /* libPods-pointr_rn_demo.a in Frameworks */,
36
+ );
37
+ runOnlyForDeploymentPostprocessing = 0;
38
+ };
39
+ /* End PBXFrameworksBuildPhase section */
40
+
41
+ /* Begin PBXGroup section */
42
+ 13B07FAE1A68108700A75B9A /* pointr_rn_demo */ = {
43
+ isa = PBXGroup;
44
+ children = (
45
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
46
+ 761780EC2CA45674006654EE /* AppDelegate.swift */,
47
+ 13B07FB61A68108700A75B9A /* Info.plist */,
48
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
49
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
50
+ );
51
+ name = pointr_rn_demo;
52
+ sourceTree = "<group>";
53
+ };
54
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
55
+ isa = PBXGroup;
56
+ children = (
57
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
58
+ 661BE1092D84169EF119A692 /* libPods-pointr_rn_demo.a */,
59
+ );
60
+ name = Frameworks;
61
+ sourceTree = "<group>";
62
+ };
63
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
64
+ isa = PBXGroup;
65
+ children = (
66
+ );
67
+ name = Libraries;
68
+ sourceTree = "<group>";
69
+ };
70
+ 83CBB9F61A601CBA00E9B192 = {
71
+ isa = PBXGroup;
72
+ children = (
73
+ 13B07FAE1A68108700A75B9A /* pointr_rn_demo */,
74
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
75
+ 83CBBA001A601CBA00E9B192 /* Products */,
76
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
77
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
78
+ );
79
+ indentWidth = 2;
80
+ sourceTree = "<group>";
81
+ tabWidth = 2;
82
+ usesTabs = 0;
83
+ };
84
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
85
+ isa = PBXGroup;
86
+ children = (
87
+ 13B07F961A680F5B00A75B9A /* pointr_rn_demo.app */,
88
+ );
89
+ name = Products;
90
+ sourceTree = "<group>";
91
+ };
92
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
93
+ isa = PBXGroup;
94
+ children = (
95
+ 4975DAFF47C7C30AF8A1D4FC /* Pods-pointr_rn_demo.debug.xcconfig */,
96
+ A33B81E86BAD8EE15135848F /* Pods-pointr_rn_demo.release.xcconfig */,
97
+ );
98
+ path = Pods;
99
+ sourceTree = "<group>";
100
+ };
101
+ /* End PBXGroup section */
102
+
103
+ /* Begin PBXNativeTarget section */
104
+ 13B07F861A680F5B00A75B9A /* pointr_rn_demo */ = {
105
+ isa = PBXNativeTarget;
106
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "pointr_rn_demo" */;
107
+ buildPhases = (
108
+ 96E51E9B116E92896136BE41 /* [CP] Check Pods Manifest.lock */,
109
+ 13B07F871A680F5B00A75B9A /* Sources */,
110
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
111
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
112
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
113
+ 777EB776F4A833EE53F00A64 /* [CP] Embed Pods Frameworks */,
114
+ 5259A7889B9683B2304D9059 /* [CP] Copy Pods Resources */,
115
+ );
116
+ buildRules = (
117
+ );
118
+ dependencies = (
119
+ );
120
+ name = pointr_rn_demo;
121
+ productName = pointr_rn_demo;
122
+ productReference = 13B07F961A680F5B00A75B9A /* pointr_rn_demo.app */;
123
+ productType = "com.apple.product-type.application";
124
+ };
125
+ /* End PBXNativeTarget section */
126
+
127
+ /* Begin PBXProject section */
128
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
129
+ isa = PBXProject;
130
+ attributes = {
131
+ LastUpgradeCheck = 1210;
132
+ TargetAttributes = {
133
+ 13B07F861A680F5B00A75B9A = {
134
+ LastSwiftMigration = 1120;
135
+ };
136
+ };
137
+ };
138
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "pointr_rn_demo" */;
139
+ compatibilityVersion = "Xcode 12.0";
140
+ developmentRegion = en;
141
+ hasScannedForEncodings = 0;
142
+ knownRegions = (
143
+ en,
144
+ Base,
145
+ );
146
+ mainGroup = 83CBB9F61A601CBA00E9B192;
147
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
148
+ projectDirPath = "";
149
+ projectRoot = "";
150
+ targets = (
151
+ 13B07F861A680F5B00A75B9A /* pointr_rn_demo */,
152
+ );
153
+ };
154
+ /* End PBXProject section */
155
+
156
+ /* Begin PBXResourcesBuildPhase section */
157
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
158
+ isa = PBXResourcesBuildPhase;
159
+ buildActionMask = 2147483647;
160
+ files = (
161
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
162
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
163
+ 977EC326A89D4D5231848876 /* PrivacyInfo.xcprivacy in Resources */,
164
+ );
165
+ runOnlyForDeploymentPostprocessing = 0;
166
+ };
167
+ /* End PBXResourcesBuildPhase section */
168
+
169
+ /* Begin PBXShellScriptBuildPhase section */
170
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
171
+ isa = PBXShellScriptBuildPhase;
172
+ buildActionMask = 2147483647;
173
+ files = (
174
+ );
175
+ inputPaths = (
176
+ "$(SRCROOT)/.xcode.env.local",
177
+ "$(SRCROOT)/.xcode.env",
178
+ );
179
+ name = "Bundle React Native code and images";
180
+ outputPaths = (
181
+ );
182
+ runOnlyForDeploymentPostprocessing = 0;
183
+ shellPath = /bin/sh;
184
+ shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
185
+ };
186
+ 5259A7889B9683B2304D9059 /* [CP] Copy Pods Resources */ = {
187
+ isa = PBXShellScriptBuildPhase;
188
+ buildActionMask = 2147483647;
189
+ files = (
190
+ );
191
+ inputFileListPaths = (
192
+ "${PODS_ROOT}/Target Support Files/Pods-pointr_rn_demo/Pods-pointr_rn_demo-resources-${CONFIGURATION}-input-files.xcfilelist",
193
+ );
194
+ inputPaths = (
195
+ );
196
+ name = "[CP] Copy Pods Resources";
197
+ outputFileListPaths = (
198
+ "${PODS_ROOT}/Target Support Files/Pods-pointr_rn_demo/Pods-pointr_rn_demo-resources-${CONFIGURATION}-output-files.xcfilelist",
199
+ );
200
+ outputPaths = (
201
+ );
202
+ runOnlyForDeploymentPostprocessing = 0;
203
+ shellPath = /bin/sh;
204
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-pointr_rn_demo/Pods-pointr_rn_demo-resources.sh\"\n";
205
+ showEnvVarsInLog = 0;
206
+ };
207
+ 777EB776F4A833EE53F00A64 /* [CP] Embed Pods Frameworks */ = {
208
+ isa = PBXShellScriptBuildPhase;
209
+ buildActionMask = 2147483647;
210
+ files = (
211
+ );
212
+ inputFileListPaths = (
213
+ "${PODS_ROOT}/Target Support Files/Pods-pointr_rn_demo/Pods-pointr_rn_demo-frameworks-${CONFIGURATION}-input-files.xcfilelist",
214
+ );
215
+ inputPaths = (
216
+ );
217
+ name = "[CP] Embed Pods Frameworks";
218
+ outputFileListPaths = (
219
+ "${PODS_ROOT}/Target Support Files/Pods-pointr_rn_demo/Pods-pointr_rn_demo-frameworks-${CONFIGURATION}-output-files.xcfilelist",
220
+ );
221
+ outputPaths = (
222
+ );
223
+ runOnlyForDeploymentPostprocessing = 0;
224
+ shellPath = /bin/sh;
225
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-pointr_rn_demo/Pods-pointr_rn_demo-frameworks.sh\"\n";
226
+ showEnvVarsInLog = 0;
227
+ };
228
+ 96E51E9B116E92896136BE41 /* [CP] Check Pods Manifest.lock */ = {
229
+ isa = PBXShellScriptBuildPhase;
230
+ buildActionMask = 2147483647;
231
+ files = (
232
+ );
233
+ inputFileListPaths = (
234
+ );
235
+ inputPaths = (
236
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
237
+ "${PODS_ROOT}/Manifest.lock",
238
+ );
239
+ name = "[CP] Check Pods Manifest.lock";
240
+ outputFileListPaths = (
241
+ );
242
+ outputPaths = (
243
+ "$(DERIVED_FILE_DIR)/Pods-pointr_rn_demo-checkManifestLockResult.txt",
244
+ );
245
+ runOnlyForDeploymentPostprocessing = 0;
246
+ shellPath = /bin/sh;
247
+ 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";
248
+ showEnvVarsInLog = 0;
249
+ };
250
+ /* End PBXShellScriptBuildPhase section */
251
+
252
+ /* Begin PBXSourcesBuildPhase section */
253
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
254
+ isa = PBXSourcesBuildPhase;
255
+ buildActionMask = 2147483647;
256
+ files = (
257
+ 761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
258
+ );
259
+ runOnlyForDeploymentPostprocessing = 0;
260
+ };
261
+ /* End PBXSourcesBuildPhase section */
262
+
263
+ /* Begin XCBuildConfiguration section */
264
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
265
+ isa = XCBuildConfiguration;
266
+ baseConfigurationReference = 4975DAFF47C7C30AF8A1D4FC /* Pods-pointr_rn_demo.debug.xcconfig */;
267
+ buildSettings = {
268
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
269
+ CLANG_ENABLE_MODULES = YES;
270
+ CODE_SIGN_STYLE = Manual;
271
+ CURRENT_PROJECT_VERSION = 1;
272
+ DEVELOPMENT_TEAM = "";
273
+ "DEVELOPMENT_TEAM[sdk=iphoneos*]" = ZK7SJLD263;
274
+ ENABLE_BITCODE = NO;
275
+ INFOPLIST_FILE = pointr_rn_demo/Info.plist;
276
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
277
+ LD_RUNPATH_SEARCH_PATHS = (
278
+ "$(inherited)",
279
+ "@executable_path/Frameworks",
280
+ );
281
+ MARKETING_VERSION = 1.0;
282
+ OTHER_LDFLAGS = (
283
+ "$(inherited)",
284
+ "-ObjC",
285
+ "-lc++",
286
+ );
287
+ PRODUCT_BUNDLE_IDENTIFIER = "tech.pointr.--PRODUCT-NAME-rfc1034identifier-";
288
+ PRODUCT_NAME = pointr_rn_demo;
289
+ PROVISIONING_PROFILE_SPECIFIER = "";
290
+ "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "iOS Development Wildcard";
291
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
292
+ SWIFT_VERSION = 5.0;
293
+ VERSIONING_SYSTEM = "apple-generic";
294
+ };
295
+ name = Debug;
296
+ };
297
+ 13B07F951A680F5B00A75B9A /* Release */ = {
298
+ isa = XCBuildConfiguration;
299
+ baseConfigurationReference = A33B81E86BAD8EE15135848F /* Pods-pointr_rn_demo.release.xcconfig */;
300
+ buildSettings = {
301
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
302
+ CLANG_ENABLE_MODULES = YES;
303
+ CODE_SIGN_STYLE = Manual;
304
+ CURRENT_PROJECT_VERSION = 1;
305
+ DEVELOPMENT_TEAM = "";
306
+ "DEVELOPMENT_TEAM[sdk=iphoneos*]" = ZK7SJLD263;
307
+ INFOPLIST_FILE = pointr_rn_demo/Info.plist;
308
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
309
+ LD_RUNPATH_SEARCH_PATHS = (
310
+ "$(inherited)",
311
+ "@executable_path/Frameworks",
312
+ );
313
+ MARKETING_VERSION = 1.0;
314
+ OTHER_LDFLAGS = (
315
+ "$(inherited)",
316
+ "-ObjC",
317
+ "-lc++",
318
+ );
319
+ PRODUCT_BUNDLE_IDENTIFIER = "tech.pointr.--PRODUCT-NAME-rfc1034identifier-";
320
+ PRODUCT_NAME = pointr_rn_demo;
321
+ PROVISIONING_PROFILE_SPECIFIER = "";
322
+ "PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "iOS Development Wildcard";
323
+ SWIFT_VERSION = 5.0;
324
+ VERSIONING_SYSTEM = "apple-generic";
325
+ };
326
+ name = Release;
327
+ };
328
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
329
+ isa = XCBuildConfiguration;
330
+ buildSettings = {
331
+ ALWAYS_SEARCH_USER_PATHS = NO;
332
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
333
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
334
+ CLANG_CXX_LIBRARY = "libc++";
335
+ CLANG_ENABLE_MODULES = YES;
336
+ CLANG_ENABLE_OBJC_ARC = YES;
337
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
338
+ CLANG_WARN_BOOL_CONVERSION = YES;
339
+ CLANG_WARN_COMMA = YES;
340
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
341
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
342
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
343
+ CLANG_WARN_EMPTY_BODY = YES;
344
+ CLANG_WARN_ENUM_CONVERSION = YES;
345
+ CLANG_WARN_INFINITE_RECURSION = YES;
346
+ CLANG_WARN_INT_CONVERSION = YES;
347
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
348
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
349
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
350
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
351
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
352
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
353
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
354
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
355
+ CLANG_WARN_UNREACHABLE_CODE = YES;
356
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
357
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
358
+ COPY_PHASE_STRIP = NO;
359
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
360
+ ENABLE_TESTABILITY = YES;
361
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
362
+ GCC_C_LANGUAGE_STANDARD = gnu99;
363
+ GCC_DYNAMIC_NO_PIC = NO;
364
+ GCC_NO_COMMON_BLOCKS = YES;
365
+ GCC_OPTIMIZATION_LEVEL = 0;
366
+ GCC_PREPROCESSOR_DEFINITIONS = (
367
+ "DEBUG=1",
368
+ "$(inherited)",
369
+ );
370
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
371
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
372
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
373
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
374
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
375
+ GCC_WARN_UNUSED_FUNCTION = YES;
376
+ GCC_WARN_UNUSED_VARIABLE = YES;
377
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
378
+ LD_RUNPATH_SEARCH_PATHS = (
379
+ /usr/lib/swift,
380
+ "$(inherited)",
381
+ );
382
+ LIBRARY_SEARCH_PATHS = (
383
+ "\"$(SDKROOT)/usr/lib/swift\"",
384
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
385
+ "\"$(inherited)\"",
386
+ );
387
+ MTL_ENABLE_DEBUG_INFO = YES;
388
+ ONLY_ACTIVE_ARCH = YES;
389
+ OTHER_CPLUSPLUSFLAGS = (
390
+ "$(OTHER_CFLAGS)",
391
+ "-DFOLLY_NO_CONFIG",
392
+ "-DFOLLY_MOBILE=1",
393
+ "-DFOLLY_USE_LIBCPP=1",
394
+ "-DFOLLY_CFG_NO_COROUTINES=1",
395
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
396
+ );
397
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
398
+ SDKROOT = iphoneos;
399
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
400
+ USE_HERMES = true;
401
+ };
402
+ name = Debug;
403
+ };
404
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
405
+ isa = XCBuildConfiguration;
406
+ buildSettings = {
407
+ ALWAYS_SEARCH_USER_PATHS = NO;
408
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
409
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
410
+ CLANG_CXX_LIBRARY = "libc++";
411
+ CLANG_ENABLE_MODULES = YES;
412
+ CLANG_ENABLE_OBJC_ARC = YES;
413
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
414
+ CLANG_WARN_BOOL_CONVERSION = YES;
415
+ CLANG_WARN_COMMA = YES;
416
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
417
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
418
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
419
+ CLANG_WARN_EMPTY_BODY = YES;
420
+ CLANG_WARN_ENUM_CONVERSION = YES;
421
+ CLANG_WARN_INFINITE_RECURSION = YES;
422
+ CLANG_WARN_INT_CONVERSION = YES;
423
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
424
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
425
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
426
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
427
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
428
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
429
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
430
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
431
+ CLANG_WARN_UNREACHABLE_CODE = YES;
432
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
433
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
434
+ COPY_PHASE_STRIP = YES;
435
+ ENABLE_NS_ASSERTIONS = NO;
436
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
437
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
438
+ GCC_C_LANGUAGE_STANDARD = gnu99;
439
+ GCC_NO_COMMON_BLOCKS = YES;
440
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
441
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
442
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
443
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
444
+ GCC_WARN_UNUSED_FUNCTION = YES;
445
+ GCC_WARN_UNUSED_VARIABLE = YES;
446
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
447
+ LD_RUNPATH_SEARCH_PATHS = (
448
+ /usr/lib/swift,
449
+ "$(inherited)",
450
+ );
451
+ LIBRARY_SEARCH_PATHS = (
452
+ "\"$(SDKROOT)/usr/lib/swift\"",
453
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
454
+ "\"$(inherited)\"",
455
+ );
456
+ MTL_ENABLE_DEBUG_INFO = NO;
457
+ OTHER_CPLUSPLUSFLAGS = (
458
+ "$(OTHER_CFLAGS)",
459
+ "-DFOLLY_NO_CONFIG",
460
+ "-DFOLLY_MOBILE=1",
461
+ "-DFOLLY_USE_LIBCPP=1",
462
+ "-DFOLLY_CFG_NO_COROUTINES=1",
463
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
464
+ );
465
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
466
+ SDKROOT = iphoneos;
467
+ USE_HERMES = true;
468
+ VALIDATE_PRODUCT = YES;
469
+ };
470
+ name = Release;
471
+ };
472
+ /* End XCBuildConfiguration section */
473
+
474
+ /* Begin XCConfigurationList section */
475
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "pointr_rn_demo" */ = {
476
+ isa = XCConfigurationList;
477
+ buildConfigurations = (
478
+ 13B07F941A680F5B00A75B9A /* Debug */,
479
+ 13B07F951A680F5B00A75B9A /* Release */,
480
+ );
481
+ defaultConfigurationIsVisible = 0;
482
+ defaultConfigurationName = Release;
483
+ };
484
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "pointr_rn_demo" */ = {
485
+ isa = XCConfigurationList;
486
+ buildConfigurations = (
487
+ 83CBBA201A601CBA00E9B192 /* Debug */,
488
+ 83CBBA211A601CBA00E9B192 /* Release */,
489
+ );
490
+ defaultConfigurationIsVisible = 0;
491
+ defaultConfigurationName = Release;
492
+ };
493
+ /* End XCConfigurationList section */
494
+ };
495
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
496
+ }
@@ -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 = "pointr_rn_demo.app"
19
+ BlueprintName = "pointr_rn_demo"
20
+ ReferencedContainer = "container:pointr_rn_demo.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 = "pointr_rn_demoTests.xctest"
37
+ BlueprintName = "pointr_rn_demoTests"
38
+ ReferencedContainer = "container:pointr_rn_demo.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 = "pointr_rn_demo.app"
59
+ BlueprintName = "pointr_rn_demo"
60
+ ReferencedContainer = "container:pointr_rn_demo.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 = "pointr_rn_demo.app"
76
+ BlueprintName = "pointr_rn_demo"
77
+ ReferencedContainer = "container:pointr_rn_demo.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,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "group:pointr_rn_demo.xcodeproj">
6
+ </FileRef>
7
+ <FileRef
8
+ location = "group:Pods/Pods.xcodeproj">
9
+ </FileRef>
10
+ </Workspace>
@@ -0,0 +1,3 @@
1
+ module.exports = {
2
+ preset: 'react-native',
3
+ };
@@ -0,0 +1,22 @@
1
+ const { getDefaultConfig, mergeConfig } = require('@react-native/metro-config');
2
+ const path = require('path');
3
+
4
+ /**
5
+ * Metro configuration
6
+ * https://reactnative.dev/docs/metro
7
+ *
8
+ * @type {import('@react-native/metro-config').MetroConfig}
9
+ */
10
+ const config = {
11
+ watchFolders: [
12
+ path.resolve(__dirname, '../../../react-native-pointr'),
13
+ ],
14
+ resolver: {
15
+ nodeModulesPaths: [
16
+ path.resolve(__dirname, 'node_modules'),
17
+ path.resolve(__dirname, '../../../react-native-pointr/node_modules'),
18
+ ],
19
+ },
20
+ };
21
+
22
+ module.exports = mergeConfig(getDefaultConfig(__dirname), config);