@jadamsbit/react-native-mapbox-navigation 1.0.0
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.
- package/.gitattributes +1 -0
- package/CONTRIBUTING.md +11 -0
- package/LICENSE +21 -0
- package/README.md +357 -0
- package/android/.gradle/7.3.3/checksums/checksums.lock +0 -0
- package/android/.gradle/7.3.3/checksums/md5-checksums.bin +0 -0
- package/android/.gradle/7.3.3/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/7.3.3/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/7.3.3/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/7.3.3/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/7.3.3/fileChanges/last-build.bin +0 -0
- package/android/.gradle/7.3.3/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/7.3.3/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -0
- package/android/.gradle/vcs-1/gc.properties +0 -0
- package/android/README.md +14 -0
- package/android/build.gradle +99 -0
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/android/gradle.properties +4 -0
- package/android/gradlew +244 -0
- package/android/gradlew.bat +92 -0
- package/android/src/main/AndroidManifest.xml +4 -0
- package/android/src/main/java/com/jadamsbit/mapboxnavigation/MapboxNavigationManager.kt +122 -0
- package/android/src/main/java/com/jadamsbit/mapboxnavigation/MapboxNavigationPackage.kt +16 -0
- package/android/src/main/java/com/jadamsbit/mapboxnavigation/MapboxNavigationView.kt +794 -0
- package/android/src/main/res/layout/navigation_view.xml +84 -0
- package/android/src/main/res/values/styles.xml +15 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +12 -0
- package/dist/typings.d.ts +40 -0
- package/dist/typings.js +1 -0
- package/example/.buckconfig +6 -0
- package/example/.eslintrc.js +4 -0
- package/example/.flowconfig +65 -0
- package/example/.prettierrc.js +7 -0
- package/example/.watchmanconfig +1 -0
- package/example/App.js +51 -0
- package/example/Gemfile +6 -0
- package/example/Gemfile.lock +100 -0
- package/example/NavigationComponent.js +56 -0
- package/example/__tests__/App-test.js +14 -0
- package/example/_bundle/config +2 -0
- package/example/_ruby-version +1 -0
- package/example/android/.gradle/8.2/checksums/checksums.lock +0 -0
- package/example/android/.gradle/8.2/fileChanges/last-build.bin +0 -0
- package/example/android/.gradle/8.2/fileHashes/fileHashes.lock +0 -0
- package/example/android/.gradle/8.2/gc.properties +0 -0
- package/example/android/.gradle/vcs-1/gc.properties +0 -0
- package/example/android/app/_BUCK +55 -0
- package/example/android/app/build.gradle +232 -0
- package/example/android/app/build_defs.bzl +19 -0
- package/example/android/app/debug.keystore +0 -0
- package/example/android/app/proguard-rules.pro +10 -0
- package/example/android/app/src/debug/AndroidManifest.xml +13 -0
- package/example/android/app/src/debug/java/com/basicapp/ReactNativeFlipper.java +72 -0
- package/example/android/app/src/main/AndroidManifest.xml +30 -0
- package/example/android/app/src/main/java/com/basicapp/MainActivity.java +15 -0
- package/example/android/app/src/main/java/com/basicapp/MainApplication.java +81 -0
- package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/values/strings.xml +3 -0
- package/example/android/app/src/main/res/values/styles.xml +9 -0
- package/example/android/build.gradle +55 -0
- package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/example/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/example/android/gradle.properties +35 -0
- package/example/android/gradlew +185 -0
- package/example/android/gradlew.bat +89 -0
- package/example/android/settings.gradle +6 -0
- package/example/app.json +4 -0
- package/example/babel.config.js +24 -0
- package/example/index.js +9 -0
- package/example/ios/BasicApp/AppDelegate.h +8 -0
- package/example/ios/BasicApp/AppDelegate.m +62 -0
- package/example/ios/BasicApp/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
- package/example/ios/BasicApp/Images.xcassets/Contents.json +6 -0
- package/example/ios/BasicApp/Info.plist +62 -0
- package/example/ios/BasicApp/LaunchScreen.storyboard +47 -0
- package/example/ios/BasicApp/main.m +9 -0
- package/example/ios/BasicApp-Bridging-Header.h +4 -0
- package/example/ios/BasicApp.xcodeproj/project.pbxproj +690 -0
- package/example/ios/BasicApp.xcodeproj/xcshareddata/xcschemes/BasicApp.xcscheme +88 -0
- package/example/ios/BasicApp.xcworkspace/contents.xcworkspacedata +10 -0
- package/example/ios/BasicApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/example/ios/BasicAppTests/BasicAppTests.m +65 -0
- package/example/ios/BasicAppTests/Info.plist +24 -0
- package/example/ios/BridgeHeader.swift +8 -0
- package/example/ios/Podfile +44 -0
- package/example/ios/Podfile.lock +473 -0
- package/example/metro.config.js +45 -0
- package/example/package.json +31 -0
- package/img/bridging-header.png +0 -0
- package/img/build-setting-linking.png +0 -0
- package/img/build-setting-path.png +0 -0
- package/ios/MapboxNavigation-Bridging-Header.h +3 -0
- package/ios/MapboxNavigation.xcodeproj/project.pbxproj +290 -0
- package/ios/MapboxNavigation.xcworkspace/contents.xcworkspacedata +7 -0
- package/ios/MapboxNavigation.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/ios/MapboxNavigationManager.m +20 -0
- package/ios/MapboxNavigationManager.swift +10 -0
- package/ios/MapboxNavigationView.swift +163 -0
- package/package.json +33 -0
- package/react-native-mapbox-navigation.podspec +51 -0
- package/src/index.tsx +21 -0
- package/src/typings.ts +43 -0
- package/tsconfig.json +14 -0
|
@@ -0,0 +1,473 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- boost (1.76.0)
|
|
3
|
+
- DoubleConversion (1.1.6)
|
|
4
|
+
- FBLazyVector (0.66.4)
|
|
5
|
+
- FBReactNativeSpec (0.66.4):
|
|
6
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
7
|
+
- RCTRequired (= 0.66.4)
|
|
8
|
+
- RCTTypeSafety (= 0.66.4)
|
|
9
|
+
- React-Core (= 0.66.4)
|
|
10
|
+
- React-jsi (= 0.66.4)
|
|
11
|
+
- ReactCommon/turbomodule/core (= 0.66.4)
|
|
12
|
+
- fmt (6.2.1)
|
|
13
|
+
- glog (0.3.5)
|
|
14
|
+
- MapboxCommon (20.1.2)
|
|
15
|
+
- MapboxCoreMaps (10.1.1):
|
|
16
|
+
- MapboxCommon (~> 20.1)
|
|
17
|
+
- MapboxCoreNavigation (2.1.1):
|
|
18
|
+
- MapboxDirections (~> 2.1)
|
|
19
|
+
- MapboxMobileEvents (~> 1.0)
|
|
20
|
+
- MapboxNavigationNative (~> 80.0)
|
|
21
|
+
- MapboxDirections (2.2.0):
|
|
22
|
+
- Polyline (~> 5.0)
|
|
23
|
+
- Turf (~> 2.0)
|
|
24
|
+
- MapboxMaps (10.1.2):
|
|
25
|
+
- MapboxCommon (= 20.1.2)
|
|
26
|
+
- MapboxCoreMaps (= 10.1.1)
|
|
27
|
+
- MapboxMobileEvents (= 1.0.6)
|
|
28
|
+
- Turf (~> 2.0)
|
|
29
|
+
- MapboxMobileEvents (1.0.6)
|
|
30
|
+
- MapboxNavigation (2.1.1):
|
|
31
|
+
- MapboxCoreNavigation (= 2.1.1)
|
|
32
|
+
- MapboxMaps (< 11.0.0, >= 10.1.1)
|
|
33
|
+
- MapboxMobileEvents (~> 1.0)
|
|
34
|
+
- MapboxSpeech (~> 2.0)
|
|
35
|
+
- Solar-dev (~> 3.0)
|
|
36
|
+
- MapboxNavigationNative (80.0.2):
|
|
37
|
+
- MapboxCommon (~> 20.1)
|
|
38
|
+
- MapboxSpeech (2.0.0)
|
|
39
|
+
- Polyline (5.0.2)
|
|
40
|
+
- RCT-Folly (2021.06.28.00-v2):
|
|
41
|
+
- boost
|
|
42
|
+
- DoubleConversion
|
|
43
|
+
- fmt (~> 6.2.1)
|
|
44
|
+
- glog
|
|
45
|
+
- RCT-Folly/Default (= 2021.06.28.00-v2)
|
|
46
|
+
- RCT-Folly/Default (2021.06.28.00-v2):
|
|
47
|
+
- boost
|
|
48
|
+
- DoubleConversion
|
|
49
|
+
- fmt (~> 6.2.1)
|
|
50
|
+
- glog
|
|
51
|
+
- RCTRequired (0.66.4)
|
|
52
|
+
- RCTTypeSafety (0.66.4):
|
|
53
|
+
- FBLazyVector (= 0.66.4)
|
|
54
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
55
|
+
- RCTRequired (= 0.66.4)
|
|
56
|
+
- React-Core (= 0.66.4)
|
|
57
|
+
- React (0.66.4):
|
|
58
|
+
- React-Core (= 0.66.4)
|
|
59
|
+
- React-Core/DevSupport (= 0.66.4)
|
|
60
|
+
- React-Core/RCTWebSocket (= 0.66.4)
|
|
61
|
+
- React-RCTActionSheet (= 0.66.4)
|
|
62
|
+
- React-RCTAnimation (= 0.66.4)
|
|
63
|
+
- React-RCTBlob (= 0.66.4)
|
|
64
|
+
- React-RCTImage (= 0.66.4)
|
|
65
|
+
- React-RCTLinking (= 0.66.4)
|
|
66
|
+
- React-RCTNetwork (= 0.66.4)
|
|
67
|
+
- React-RCTSettings (= 0.66.4)
|
|
68
|
+
- React-RCTText (= 0.66.4)
|
|
69
|
+
- React-RCTVibration (= 0.66.4)
|
|
70
|
+
- React-callinvoker (0.66.4)
|
|
71
|
+
- React-Core (0.66.4):
|
|
72
|
+
- glog
|
|
73
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
74
|
+
- React-Core/Default (= 0.66.4)
|
|
75
|
+
- React-cxxreact (= 0.66.4)
|
|
76
|
+
- React-jsi (= 0.66.4)
|
|
77
|
+
- React-jsiexecutor (= 0.66.4)
|
|
78
|
+
- React-perflogger (= 0.66.4)
|
|
79
|
+
- Yoga
|
|
80
|
+
- React-Core/CoreModulesHeaders (0.66.4):
|
|
81
|
+
- glog
|
|
82
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
83
|
+
- React-Core/Default
|
|
84
|
+
- React-cxxreact (= 0.66.4)
|
|
85
|
+
- React-jsi (= 0.66.4)
|
|
86
|
+
- React-jsiexecutor (= 0.66.4)
|
|
87
|
+
- React-perflogger (= 0.66.4)
|
|
88
|
+
- Yoga
|
|
89
|
+
- React-Core/Default (0.66.4):
|
|
90
|
+
- glog
|
|
91
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
92
|
+
- React-cxxreact (= 0.66.4)
|
|
93
|
+
- React-jsi (= 0.66.4)
|
|
94
|
+
- React-jsiexecutor (= 0.66.4)
|
|
95
|
+
- React-perflogger (= 0.66.4)
|
|
96
|
+
- Yoga
|
|
97
|
+
- React-Core/DevSupport (0.66.4):
|
|
98
|
+
- glog
|
|
99
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
100
|
+
- React-Core/Default (= 0.66.4)
|
|
101
|
+
- React-Core/RCTWebSocket (= 0.66.4)
|
|
102
|
+
- React-cxxreact (= 0.66.4)
|
|
103
|
+
- React-jsi (= 0.66.4)
|
|
104
|
+
- React-jsiexecutor (= 0.66.4)
|
|
105
|
+
- React-jsinspector (= 0.66.4)
|
|
106
|
+
- React-perflogger (= 0.66.4)
|
|
107
|
+
- Yoga
|
|
108
|
+
- React-Core/RCTActionSheetHeaders (0.66.4):
|
|
109
|
+
- glog
|
|
110
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
111
|
+
- React-Core/Default
|
|
112
|
+
- React-cxxreact (= 0.66.4)
|
|
113
|
+
- React-jsi (= 0.66.4)
|
|
114
|
+
- React-jsiexecutor (= 0.66.4)
|
|
115
|
+
- React-perflogger (= 0.66.4)
|
|
116
|
+
- Yoga
|
|
117
|
+
- React-Core/RCTAnimationHeaders (0.66.4):
|
|
118
|
+
- glog
|
|
119
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
120
|
+
- React-Core/Default
|
|
121
|
+
- React-cxxreact (= 0.66.4)
|
|
122
|
+
- React-jsi (= 0.66.4)
|
|
123
|
+
- React-jsiexecutor (= 0.66.4)
|
|
124
|
+
- React-perflogger (= 0.66.4)
|
|
125
|
+
- Yoga
|
|
126
|
+
- React-Core/RCTBlobHeaders (0.66.4):
|
|
127
|
+
- glog
|
|
128
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
129
|
+
- React-Core/Default
|
|
130
|
+
- React-cxxreact (= 0.66.4)
|
|
131
|
+
- React-jsi (= 0.66.4)
|
|
132
|
+
- React-jsiexecutor (= 0.66.4)
|
|
133
|
+
- React-perflogger (= 0.66.4)
|
|
134
|
+
- Yoga
|
|
135
|
+
- React-Core/RCTImageHeaders (0.66.4):
|
|
136
|
+
- glog
|
|
137
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
138
|
+
- React-Core/Default
|
|
139
|
+
- React-cxxreact (= 0.66.4)
|
|
140
|
+
- React-jsi (= 0.66.4)
|
|
141
|
+
- React-jsiexecutor (= 0.66.4)
|
|
142
|
+
- React-perflogger (= 0.66.4)
|
|
143
|
+
- Yoga
|
|
144
|
+
- React-Core/RCTLinkingHeaders (0.66.4):
|
|
145
|
+
- glog
|
|
146
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
147
|
+
- React-Core/Default
|
|
148
|
+
- React-cxxreact (= 0.66.4)
|
|
149
|
+
- React-jsi (= 0.66.4)
|
|
150
|
+
- React-jsiexecutor (= 0.66.4)
|
|
151
|
+
- React-perflogger (= 0.66.4)
|
|
152
|
+
- Yoga
|
|
153
|
+
- React-Core/RCTNetworkHeaders (0.66.4):
|
|
154
|
+
- glog
|
|
155
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
156
|
+
- React-Core/Default
|
|
157
|
+
- React-cxxreact (= 0.66.4)
|
|
158
|
+
- React-jsi (= 0.66.4)
|
|
159
|
+
- React-jsiexecutor (= 0.66.4)
|
|
160
|
+
- React-perflogger (= 0.66.4)
|
|
161
|
+
- Yoga
|
|
162
|
+
- React-Core/RCTSettingsHeaders (0.66.4):
|
|
163
|
+
- glog
|
|
164
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
165
|
+
- React-Core/Default
|
|
166
|
+
- React-cxxreact (= 0.66.4)
|
|
167
|
+
- React-jsi (= 0.66.4)
|
|
168
|
+
- React-jsiexecutor (= 0.66.4)
|
|
169
|
+
- React-perflogger (= 0.66.4)
|
|
170
|
+
- Yoga
|
|
171
|
+
- React-Core/RCTTextHeaders (0.66.4):
|
|
172
|
+
- glog
|
|
173
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
174
|
+
- React-Core/Default
|
|
175
|
+
- React-cxxreact (= 0.66.4)
|
|
176
|
+
- React-jsi (= 0.66.4)
|
|
177
|
+
- React-jsiexecutor (= 0.66.4)
|
|
178
|
+
- React-perflogger (= 0.66.4)
|
|
179
|
+
- Yoga
|
|
180
|
+
- React-Core/RCTVibrationHeaders (0.66.4):
|
|
181
|
+
- glog
|
|
182
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
183
|
+
- React-Core/Default
|
|
184
|
+
- React-cxxreact (= 0.66.4)
|
|
185
|
+
- React-jsi (= 0.66.4)
|
|
186
|
+
- React-jsiexecutor (= 0.66.4)
|
|
187
|
+
- React-perflogger (= 0.66.4)
|
|
188
|
+
- Yoga
|
|
189
|
+
- React-Core/RCTWebSocket (0.66.4):
|
|
190
|
+
- glog
|
|
191
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
192
|
+
- React-Core/Default (= 0.66.4)
|
|
193
|
+
- React-cxxreact (= 0.66.4)
|
|
194
|
+
- React-jsi (= 0.66.4)
|
|
195
|
+
- React-jsiexecutor (= 0.66.4)
|
|
196
|
+
- React-perflogger (= 0.66.4)
|
|
197
|
+
- Yoga
|
|
198
|
+
- React-CoreModules (0.66.4):
|
|
199
|
+
- FBReactNativeSpec (= 0.66.4)
|
|
200
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
201
|
+
- RCTTypeSafety (= 0.66.4)
|
|
202
|
+
- React-Core/CoreModulesHeaders (= 0.66.4)
|
|
203
|
+
- React-jsi (= 0.66.4)
|
|
204
|
+
- React-RCTImage (= 0.66.4)
|
|
205
|
+
- ReactCommon/turbomodule/core (= 0.66.4)
|
|
206
|
+
- React-cxxreact (0.66.4):
|
|
207
|
+
- boost (= 1.76.0)
|
|
208
|
+
- DoubleConversion
|
|
209
|
+
- glog
|
|
210
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
211
|
+
- React-callinvoker (= 0.66.4)
|
|
212
|
+
- React-jsi (= 0.66.4)
|
|
213
|
+
- React-jsinspector (= 0.66.4)
|
|
214
|
+
- React-logger (= 0.66.4)
|
|
215
|
+
- React-perflogger (= 0.66.4)
|
|
216
|
+
- React-runtimeexecutor (= 0.66.4)
|
|
217
|
+
- React-jsi (0.66.4):
|
|
218
|
+
- boost (= 1.76.0)
|
|
219
|
+
- DoubleConversion
|
|
220
|
+
- glog
|
|
221
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
222
|
+
- React-jsi/Default (= 0.66.4)
|
|
223
|
+
- React-jsi/Default (0.66.4):
|
|
224
|
+
- boost (= 1.76.0)
|
|
225
|
+
- DoubleConversion
|
|
226
|
+
- glog
|
|
227
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
228
|
+
- React-jsiexecutor (0.66.4):
|
|
229
|
+
- DoubleConversion
|
|
230
|
+
- glog
|
|
231
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
232
|
+
- React-cxxreact (= 0.66.4)
|
|
233
|
+
- React-jsi (= 0.66.4)
|
|
234
|
+
- React-perflogger (= 0.66.4)
|
|
235
|
+
- React-jsinspector (0.66.4)
|
|
236
|
+
- React-logger (0.66.4):
|
|
237
|
+
- glog
|
|
238
|
+
- react-native-mapbox-navigation (2.0.1):
|
|
239
|
+
- MapboxNavigation (~> 2.1.1)
|
|
240
|
+
- React-Core
|
|
241
|
+
- React-perflogger (0.66.4)
|
|
242
|
+
- React-RCTActionSheet (0.66.4):
|
|
243
|
+
- React-Core/RCTActionSheetHeaders (= 0.66.4)
|
|
244
|
+
- React-RCTAnimation (0.66.4):
|
|
245
|
+
- FBReactNativeSpec (= 0.66.4)
|
|
246
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
247
|
+
- RCTTypeSafety (= 0.66.4)
|
|
248
|
+
- React-Core/RCTAnimationHeaders (= 0.66.4)
|
|
249
|
+
- React-jsi (= 0.66.4)
|
|
250
|
+
- ReactCommon/turbomodule/core (= 0.66.4)
|
|
251
|
+
- React-RCTBlob (0.66.4):
|
|
252
|
+
- FBReactNativeSpec (= 0.66.4)
|
|
253
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
254
|
+
- React-Core/RCTBlobHeaders (= 0.66.4)
|
|
255
|
+
- React-Core/RCTWebSocket (= 0.66.4)
|
|
256
|
+
- React-jsi (= 0.66.4)
|
|
257
|
+
- React-RCTNetwork (= 0.66.4)
|
|
258
|
+
- ReactCommon/turbomodule/core (= 0.66.4)
|
|
259
|
+
- React-RCTImage (0.66.4):
|
|
260
|
+
- FBReactNativeSpec (= 0.66.4)
|
|
261
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
262
|
+
- RCTTypeSafety (= 0.66.4)
|
|
263
|
+
- React-Core/RCTImageHeaders (= 0.66.4)
|
|
264
|
+
- React-jsi (= 0.66.4)
|
|
265
|
+
- React-RCTNetwork (= 0.66.4)
|
|
266
|
+
- ReactCommon/turbomodule/core (= 0.66.4)
|
|
267
|
+
- React-RCTLinking (0.66.4):
|
|
268
|
+
- FBReactNativeSpec (= 0.66.4)
|
|
269
|
+
- React-Core/RCTLinkingHeaders (= 0.66.4)
|
|
270
|
+
- React-jsi (= 0.66.4)
|
|
271
|
+
- ReactCommon/turbomodule/core (= 0.66.4)
|
|
272
|
+
- React-RCTNetwork (0.66.4):
|
|
273
|
+
- FBReactNativeSpec (= 0.66.4)
|
|
274
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
275
|
+
- RCTTypeSafety (= 0.66.4)
|
|
276
|
+
- React-Core/RCTNetworkHeaders (= 0.66.4)
|
|
277
|
+
- React-jsi (= 0.66.4)
|
|
278
|
+
- ReactCommon/turbomodule/core (= 0.66.4)
|
|
279
|
+
- React-RCTSettings (0.66.4):
|
|
280
|
+
- FBReactNativeSpec (= 0.66.4)
|
|
281
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
282
|
+
- RCTTypeSafety (= 0.66.4)
|
|
283
|
+
- React-Core/RCTSettingsHeaders (= 0.66.4)
|
|
284
|
+
- React-jsi (= 0.66.4)
|
|
285
|
+
- ReactCommon/turbomodule/core (= 0.66.4)
|
|
286
|
+
- React-RCTText (0.66.4):
|
|
287
|
+
- React-Core/RCTTextHeaders (= 0.66.4)
|
|
288
|
+
- React-RCTVibration (0.66.4):
|
|
289
|
+
- FBReactNativeSpec (= 0.66.4)
|
|
290
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
291
|
+
- React-Core/RCTVibrationHeaders (= 0.66.4)
|
|
292
|
+
- React-jsi (= 0.66.4)
|
|
293
|
+
- ReactCommon/turbomodule/core (= 0.66.4)
|
|
294
|
+
- React-runtimeexecutor (0.66.4):
|
|
295
|
+
- React-jsi (= 0.66.4)
|
|
296
|
+
- ReactCommon/turbomodule/core (0.66.4):
|
|
297
|
+
- DoubleConversion
|
|
298
|
+
- glog
|
|
299
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
300
|
+
- React-callinvoker (= 0.66.4)
|
|
301
|
+
- React-Core (= 0.66.4)
|
|
302
|
+
- React-cxxreact (= 0.66.4)
|
|
303
|
+
- React-jsi (= 0.66.4)
|
|
304
|
+
- React-logger (= 0.66.4)
|
|
305
|
+
- React-perflogger (= 0.66.4)
|
|
306
|
+
- Solar-dev (3.0.1)
|
|
307
|
+
- Turf (2.2.0)
|
|
308
|
+
- Yoga (1.14.0)
|
|
309
|
+
|
|
310
|
+
DEPENDENCIES:
|
|
311
|
+
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
|
312
|
+
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
313
|
+
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
|
314
|
+
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
|
315
|
+
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
316
|
+
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
317
|
+
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
|
|
318
|
+
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
|
319
|
+
- React (from `../node_modules/react-native/`)
|
|
320
|
+
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
|
|
321
|
+
- React-Core (from `../node_modules/react-native/`)
|
|
322
|
+
- React-Core/DevSupport (from `../node_modules/react-native/`)
|
|
323
|
+
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
|
|
324
|
+
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
|
|
325
|
+
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
|
|
326
|
+
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
|
327
|
+
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
|
328
|
+
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
|
|
329
|
+
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
|
330
|
+
- react-native-mapbox-navigation (from `../../`)
|
|
331
|
+
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
|
332
|
+
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
|
333
|
+
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
|
334
|
+
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
|
335
|
+
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
|
|
336
|
+
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
|
|
337
|
+
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
|
|
338
|
+
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
|
339
|
+
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
|
340
|
+
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
|
341
|
+
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
|
342
|
+
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
|
343
|
+
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
|
344
|
+
|
|
345
|
+
SPEC REPOS:
|
|
346
|
+
trunk:
|
|
347
|
+
- fmt
|
|
348
|
+
- MapboxCommon
|
|
349
|
+
- MapboxCoreMaps
|
|
350
|
+
- MapboxCoreNavigation
|
|
351
|
+
- MapboxDirections
|
|
352
|
+
- MapboxMaps
|
|
353
|
+
- MapboxMobileEvents
|
|
354
|
+
- MapboxNavigation
|
|
355
|
+
- MapboxNavigationNative
|
|
356
|
+
- MapboxSpeech
|
|
357
|
+
- Polyline
|
|
358
|
+
- Solar-dev
|
|
359
|
+
- Turf
|
|
360
|
+
|
|
361
|
+
EXTERNAL SOURCES:
|
|
362
|
+
boost:
|
|
363
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
|
364
|
+
DoubleConversion:
|
|
365
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
|
366
|
+
FBLazyVector:
|
|
367
|
+
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
|
368
|
+
FBReactNativeSpec:
|
|
369
|
+
:path: "../node_modules/react-native/React/FBReactNativeSpec"
|
|
370
|
+
glog:
|
|
371
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
|
372
|
+
RCT-Folly:
|
|
373
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
374
|
+
RCTRequired:
|
|
375
|
+
:path: "../node_modules/react-native/Libraries/RCTRequired"
|
|
376
|
+
RCTTypeSafety:
|
|
377
|
+
:path: "../node_modules/react-native/Libraries/TypeSafety"
|
|
378
|
+
React:
|
|
379
|
+
:path: "../node_modules/react-native/"
|
|
380
|
+
React-callinvoker:
|
|
381
|
+
:path: "../node_modules/react-native/ReactCommon/callinvoker"
|
|
382
|
+
React-Core:
|
|
383
|
+
:path: "../node_modules/react-native/"
|
|
384
|
+
React-CoreModules:
|
|
385
|
+
:path: "../node_modules/react-native/React/CoreModules"
|
|
386
|
+
React-cxxreact:
|
|
387
|
+
:path: "../node_modules/react-native/ReactCommon/cxxreact"
|
|
388
|
+
React-jsi:
|
|
389
|
+
:path: "../node_modules/react-native/ReactCommon/jsi"
|
|
390
|
+
React-jsiexecutor:
|
|
391
|
+
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
|
392
|
+
React-jsinspector:
|
|
393
|
+
:path: "../node_modules/react-native/ReactCommon/jsinspector"
|
|
394
|
+
React-logger:
|
|
395
|
+
:path: "../node_modules/react-native/ReactCommon/logger"
|
|
396
|
+
react-native-mapbox-navigation:
|
|
397
|
+
:path: "../../"
|
|
398
|
+
React-perflogger:
|
|
399
|
+
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
|
|
400
|
+
React-RCTActionSheet:
|
|
401
|
+
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
|
402
|
+
React-RCTAnimation:
|
|
403
|
+
:path: "../node_modules/react-native/Libraries/NativeAnimation"
|
|
404
|
+
React-RCTBlob:
|
|
405
|
+
:path: "../node_modules/react-native/Libraries/Blob"
|
|
406
|
+
React-RCTImage:
|
|
407
|
+
:path: "../node_modules/react-native/Libraries/Image"
|
|
408
|
+
React-RCTLinking:
|
|
409
|
+
:path: "../node_modules/react-native/Libraries/LinkingIOS"
|
|
410
|
+
React-RCTNetwork:
|
|
411
|
+
:path: "../node_modules/react-native/Libraries/Network"
|
|
412
|
+
React-RCTSettings:
|
|
413
|
+
:path: "../node_modules/react-native/Libraries/Settings"
|
|
414
|
+
React-RCTText:
|
|
415
|
+
:path: "../node_modules/react-native/Libraries/Text"
|
|
416
|
+
React-RCTVibration:
|
|
417
|
+
:path: "../node_modules/react-native/Libraries/Vibration"
|
|
418
|
+
React-runtimeexecutor:
|
|
419
|
+
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
|
|
420
|
+
ReactCommon:
|
|
421
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
422
|
+
Yoga:
|
|
423
|
+
:path: "../node_modules/react-native/ReactCommon/yoga"
|
|
424
|
+
|
|
425
|
+
SPEC CHECKSUMS:
|
|
426
|
+
boost: a7c83b31436843459a1961bfd74b96033dc77234
|
|
427
|
+
DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
|
|
428
|
+
FBLazyVector: e5569e42a1c79ca00521846c223173a57aca1fe1
|
|
429
|
+
FBReactNativeSpec: fe08c1cd7e2e205718d77ad14b34957cce949b58
|
|
430
|
+
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
|
431
|
+
glog: 5337263514dd6f09803962437687240c5dc39aa4
|
|
432
|
+
MapboxCommon: f15bb4cc4810d8d72e2d72bf2295f3f0cb328b11
|
|
433
|
+
MapboxCoreMaps: ee3d7f31efbbafe81ce33907b6a96066e111a244
|
|
434
|
+
MapboxCoreNavigation: 90cfee78d9a7aeada16468e6ad9cbf425c41acc3
|
|
435
|
+
MapboxDirections: aaa6f1ae1612692ef3b4211d20d22404ad8ef607
|
|
436
|
+
MapboxMaps: e4c4620a76b9e26a5d6cae10ffee5681a135b3de
|
|
437
|
+
MapboxMobileEvents: 14d7ac3ee95b4142c4fec2205dfd48ff453e8871
|
|
438
|
+
MapboxNavigation: ae52148971b92fd0b5735b15db7f5b1feb13906f
|
|
439
|
+
MapboxNavigationNative: 5319134183246da72d3ad7f4d4089452ce450167
|
|
440
|
+
MapboxSpeech: e4ed02984444b6373374c72c369edaf045cc490c
|
|
441
|
+
Polyline: fce41d72e1146c41c6d081f7656827226f643dff
|
|
442
|
+
RCT-Folly: a21c126816d8025b547704b777a2ba552f3d9fa9
|
|
443
|
+
RCTRequired: 4bf86c70714490bca4bf2696148638284622644b
|
|
444
|
+
RCTTypeSafety: c475a7059eb77935fa53d2c17db299893f057d5d
|
|
445
|
+
React: f64af14e3f2c50f6f2c91a5fd250e4ff1b3c3459
|
|
446
|
+
React-callinvoker: b74e4ae80287780dcdf0cab262bcb581eeef56e7
|
|
447
|
+
React-Core: 3eb7432bad96ff1d25aebc1defbae013fee2fd0e
|
|
448
|
+
React-CoreModules: ad9e1fd5650e16666c57a08328df86fd7e480cb9
|
|
449
|
+
React-cxxreact: 02633ff398cf7e91a2c1e12590d323c4a4b8668a
|
|
450
|
+
React-jsi: 805c41a927d6499fb811772acb971467d9204633
|
|
451
|
+
React-jsiexecutor: 94ce921e1d8ce7023366873ec371f3441383b396
|
|
452
|
+
React-jsinspector: d0374f7509d407d2264168b6d0fad0b54e300b85
|
|
453
|
+
React-logger: 933f80c97c633ee8965d609876848148e3fef438
|
|
454
|
+
react-native-mapbox-navigation: 04e8379f8a2d308e5a292bdbc3a79ac883e2d1d4
|
|
455
|
+
React-perflogger: 93075d8931c32cd1fce8a98c15d2d5ccc4d891bd
|
|
456
|
+
React-RCTActionSheet: 7d3041e6761b4f3044a37079ddcb156575fb6d89
|
|
457
|
+
React-RCTAnimation: 743e88b55ac62511ae5c2e22803d4f503f2a3a13
|
|
458
|
+
React-RCTBlob: bee3a2f98fa7fc25c957c8643494244f74bea0a0
|
|
459
|
+
React-RCTImage: 19fc9e29b06cc38611c553494f8d3040bf78c24e
|
|
460
|
+
React-RCTLinking: dc799503979c8c711126d66328e7ce8f25c2848f
|
|
461
|
+
React-RCTNetwork: 417e4e34cf3c19eaa5fd4e9eb20180d662a799ce
|
|
462
|
+
React-RCTSettings: 4df89417265af26501a7e0e9192a34d3d9848dff
|
|
463
|
+
React-RCTText: f8a21c3499ab322326290fa9b701ae29aa093aa5
|
|
464
|
+
React-RCTVibration: e3ffca672dd3772536cb844274094b0e2c31b187
|
|
465
|
+
React-runtimeexecutor: dec32ee6f2e2a26e13e58152271535fadff5455a
|
|
466
|
+
ReactCommon: 57b69f6383eafcbd7da625bfa6003810332313c4
|
|
467
|
+
Solar-dev: 4612dc9878b9fed2667d23b327f1d4e54e16e8d0
|
|
468
|
+
Turf: 1a6bc2d0142f84610445159565c3c93d62b83897
|
|
469
|
+
Yoga: e7dc4e71caba6472ff48ad7d234389b91dadc280
|
|
470
|
+
|
|
471
|
+
PODFILE CHECKSUM: b825e0c0c2130ea0c4924baa443a786ab3686731
|
|
472
|
+
|
|
473
|
+
COCOAPODS: 1.14.3
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Metro configuration for React Native
|
|
3
|
+
* https://github.com/facebook/react-native
|
|
4
|
+
*
|
|
5
|
+
* @format
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
const path = require('path');
|
|
9
|
+
const blacklist = require('metro-config/src/defaults/exclusionList');
|
|
10
|
+
const escape = require('escape-string-regexp');
|
|
11
|
+
const pak = require('../package.json');
|
|
12
|
+
|
|
13
|
+
const root = path.resolve(__dirname, '../');
|
|
14
|
+
|
|
15
|
+
const modules = Object.keys({
|
|
16
|
+
...pak.peerDependencies,
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
module.exports = {
|
|
20
|
+
projectRoot: __dirname,
|
|
21
|
+
watchFolders: [root],
|
|
22
|
+
|
|
23
|
+
// We need to make sure that only one version is loaded for peerDependencies
|
|
24
|
+
// So we blacklist them at the root, and alias them to the versions in example's node_modules
|
|
25
|
+
resolver: {
|
|
26
|
+
blacklistRE: blacklist(
|
|
27
|
+
modules.map(
|
|
28
|
+
m => new RegExp(`^${escape(path.join(root, 'node_modules', m))}\\/.*$`),
|
|
29
|
+
),
|
|
30
|
+
),
|
|
31
|
+
|
|
32
|
+
extraNodeModules: modules.reduce((acc, name) => {
|
|
33
|
+
acc[name] = path.join(__dirname, 'node_modules', name);
|
|
34
|
+
return acc;
|
|
35
|
+
}, {}),
|
|
36
|
+
},
|
|
37
|
+
transformer: {
|
|
38
|
+
getTransformOptions: async () => ({
|
|
39
|
+
transform: {
|
|
40
|
+
experimentalImportSupport: false,
|
|
41
|
+
inlineRequires: true,
|
|
42
|
+
},
|
|
43
|
+
}),
|
|
44
|
+
},
|
|
45
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "basicapp",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"private": true,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"android": "react-native run-android",
|
|
7
|
+
"ios": "react-native run-ios",
|
|
8
|
+
"start": "react-native start",
|
|
9
|
+
"test": "jest",
|
|
10
|
+
"lint": "eslint ."
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"react": "17.0.2",
|
|
14
|
+
"react-native": "0.66.4"
|
|
15
|
+
},
|
|
16
|
+
"devDependencies": {
|
|
17
|
+
"@babel/core": "^7.12.9",
|
|
18
|
+
"@babel/runtime": "^7.12.5",
|
|
19
|
+
"@react-native-community/eslint-config": "^2.0.0",
|
|
20
|
+
"babel-jest": "^26.6.3",
|
|
21
|
+
"babel-plugin-module-resolver": "^4.1.0",
|
|
22
|
+
"eslint": "7.14.0",
|
|
23
|
+
"glob-to-regexp": "^0.4.1",
|
|
24
|
+
"jest": "^26.6.3",
|
|
25
|
+
"metro-react-native-babel-preset": "^0.66.2",
|
|
26
|
+
"react-test-renderer": "17.0.2"
|
|
27
|
+
},
|
|
28
|
+
"jest": {
|
|
29
|
+
"preset": "react-native"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|