Minh Nguyễn

Results 1323 comments of Minh Nguyễn

@byvalentino, what Xcode version are you using, and which device were you building for? What are your values for the build settings listed in https://github.com/mapbox/mapbox-navigation-ios/issues/2674#issuecomment-702950955? For what it’s worth, we’ve...

I think the workaround we applied in the podspec is supposed to clear out `EXCLUDED_ARCHS`, replacing it with `EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_simulator__NATIVE_ARCH_64_BIT_x86_64__XCODE_1200`. My own test project ends up with: ``` EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_simulator__NATIVE_ARCH_64_BIT_x86_64__XCODE_1200 = arm64...

> This linker error looks like CocoaPods/CocoaPods#10026. Upgrading to CocoaPods 1.10.rc.1 should fix the error. If anyone has been holding off to avoid using a prerelease version of CocoaPods, [v1.10.0](https://github.com/CocoaPods/CocoaPods/releases/tag/1.10.0)...

If you’re using CocoaPods and your application target has a custom value for the `EXCLUDED_ARCHS` build setting in any configuration, chances are that that build setting is causing any linker...

We just hotfixed the map SDK v6.2.2 and v6.3.0 podspecs on CocoaPods trunk to address another linker error that could occur, but you may need to wipe your CocoaPods caches...

More reports of this issue in #2608 homeeondemand/react-native-mapbox-navigation#57.

The Resume button’s contents come from an `NSLocalizedString(_:tableName:bundle:value:comment:)` call. We pass in `Bundle.mapboxNavigation` to get the resource bundle associated with MapboxNavigation.framework (or the MapboxNavigation module in SPM), as opposed to...

This sounds quite similar to #1876. #1895 would’ve made it possible to incorporate previous routes in the current route progress, primarily for automatic rerouting, but the manual rerouting you’re describing...

>> user is still > > By user is still, do you mean that we don't provide locations to Native Navigator or that we provide the same location every second?...

A RouteController or LegacyRouteController is always involved during turn-by-turn navigation. You can create one independently of NavigationViewController. CustomViewController.swift in this repository’s Example target demonstrates implementing turn-by-turn navigation using only Core...