-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple commands produce #97
Comments
There is an alternative with MapBox Navigation SDK 2.6 I made an article and you have a repo available with all explanation |
install! 'cocoapods', :disable_input_output_paths => true # <----- NEW
require_relative '../node_modules/react-native/scripts/react_native_pods'
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
platform :ios, '11.0'
target 'app' do
config = use_native_modules!
use_react_native!(
:path => config[:reactNativePath],
# to enable hermes on iOS, change `false` to `true` and then install pods
:hermes_enabled => false
)
target 'appTests' do
inherit! :complete
# Pods for testing
end
pre_install do |installer| # <----- NEW
$RNMBNAV.pre_install(installer) # <----- NEW
end # <----- NEW
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
# you should disable the next line.
use_flipper!()
post_install do |installer|
react_native_post_install(installer)
__apply_Xcode_12_5_M1_post_install_workaround(installer)
flipper_post_install(installer) # <----- NEW
$RNMBNAV.post_install(installer) # <----- NEW
end
end |
@Polyrion did you also remember to run |
Made a little plugin for this
then add to your plugins in config file
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi all, I followed the doc and even with
install! 'cocoapods', :disable_input_output_paths => true
its impossible to build.
I also tried on a fresh installation of React Native 0.69.1 same issue.
There is my Podfile :
For Xcode version I'm on 13.4.1
For more information I tried to build IOS 15.5 and 15.2
Does someone success to make it run recently ?
Thanks
The text was updated successfully, but these errors were encountered: