Estoy aprendiendo React Native y quiero implementar Google Maps en mi proyecto. Pero cuando actualizo mi podfile y ejecuto pod install . WebStorm me da error como
You may have encountered a bug in the Ruby interpreter or extension libraries. Bug reports are welcome. Ya he importado GoogleMapAPI en mi AppDelgate.m. Después de importar la API, actualicé PODDFILE con el siguiente código en mi podfile justo arriba de use_native_modules
# React Native Maps dependencies rn_maps_path = '../node_modules/react-native-maps' pod 'react-native-google-maps', :path => rn_maps_path¿¿¿Hay alguna manera de arreglar este problema???
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 'CabMe' do # React Native Maps dependencies rn_maps_path = '../node_modules/react-native-maps' pod 'react-native-google-maps', :path => rn_maps_path 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 'CabMeTests' do inherit! :complete # Pods for testing end # 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) end endHe proporcionado el repositorio de github para mi proyecto. Por favor, ayúdame a arreglar esto. Soy nuevo en esto.