用于反应本机地理定位的 podspec 设置

podspec setup for react native geolocation

抱歉这个菜鸟问题,但我真的不知道如何为 RN 的地理位置设置最后一行:

If you are using CocoaPods for React Native, make sure to include the RCTGeolocation sub-podspec.

我已经有了一个 podfile,因为我正在遵循 RNfirebase 库的指南, 但不确定在哪里添加 RCTGeolocation。

这是我目前拥有的:

target 'Absent' do
# Uncomment the next line if you're using Swift or would like to use 
dynamic frameworks
  # use_frameworks!

  # Pods for Absent
    pod 'Firebase/Core', '~> 5.3.0'
    pod 'Firebase/Messaging', '~> 5.3.0'

  target 'AbsentTests' do
    inherit! :search_paths
    # Pods for testing
  end

end

这是我第一次在 mac 上自定义项目并与 pod 文件进行交互。 任何指针将不胜感激:D

这是您应该添加到播客文件中的内容:

pod 'React', :path => '../node_modules/react-native', :subspecs => [
  'RCTGeolocation',
]

然后 运行 pod 安装

2019 年更新:

安装react-native-geolocation,记得cd ios; pod install