我正在尝试在我的IOS应用程序中使用SinchVerification。但是在我pod install
之后我收到了这个错误:
依赖项
SinchVerification-Swift
未在任何具体目标中使用。
这是什么意思?我该怎么办?
答案 0 :(得分:0)
你应该在做完
后编写你的podtarget 'Your-Project' do
pod 'SinchVerification-Swift'
end
答案 1 :(得分:0)
这通常是由Podfile中的目标丢失引起的。如果Podfile与.xcodeproj不在同一目录中,您还必须添加project 'path/to/Project.xcodeproj'
来指定它。
platform :ios, '8.1'
use_frameworks!
pod 'SinchVerification-Swift'
target 'your target name.'