我正在尝试将mixpanel插件添加到我的react-native项目中。 我使用这些链接
并且xcode中的集成在这里 mixpanel cocoapods
我按照这些说明操作:
gem install cocoapods
然后我运行pod设置并将Podfile文本文件创建到项目中。 然后,当我将pod install运行到我的bash命令行时,我收到此错误
依赖项
Mixpanel
未在任何具体目标中使用。
答案 0 :(得分:0)
首先需要从您的react pod init
目录运行ios
。这会生成正确的启动podfile,正确定位您的应用。
https://github.com/facebook/react-native/issues/7775
答案 1 :(得分:0)
我收到了上述错误。 所以我在podfile中添加了以下格式的文本文件:
target "MercadoPagoSample" do
source 'https://github.com/CocoaPods/Specs.git'
# Se necesita este parámetro por ser una SDK en swift
use_frameworks!
platform :ios, '9.0'
pod 'MercadoPagoSDK', '3.6.0'
end
然后我就能更新podfile了。