防止" Podfile包含框架目标..."警告

时间:2017-10-02 03:36:38

标签: ios xcode cocoapods

每当我做pod install时,我都会收到此警告:

  

[!] Podfile包含Podfile所做的框架目标   不包含主机目标(嵌入框架的目标)。如果这   项目是用于框架开发,你可以忽略这一点   信息。否则,将目标添加到嵌入这些目标的Podfile中   使此消息消失的框架(例如测试目标)。

我的项目是用于框架开发和警告说我可以忽略它但是我讨厌警告出现的东西不需要被警告,所以是否有任何解决办法使这个警告消失?

我的Podfile如下所示:

workspace 'myworkspace.xcworkspace'
platform :ios, '10.0'

target 'framework' do
    use_frameworks!
    project 'framework/framework.xcodeproj'
    pod 'Alamofire', '~> 4.5', :inhibit_warnings => true
    pod 'Serpent', '~> 1.0', :inhibit_warnings => true
end

target 'demo-objc-uitests' do
    use_frameworks!
    inherit! :search_paths
    project 'demo-objc/demo-objc.xcodeproj'
    pod 'Alamofire', '~> 4.5', :inhibit_warnings => true
    pod 'Serpent', '~> 1.0', :inhibit_warnings => true
    pod 'myframework', :path => 'myframework.podspec'
end

target 'demo-swift-uitests' do
    use_frameworks!
    inherit! :search_paths
    project 'demo-swift/demo-swift.xcodeproj'
    pod 'Alamofire', '~> 4.5', :inhibit_warnings => true
    pod 'Serpent', '~> 1.0', :inhibit_warnings => true
    pod 'myframework', :path => 'myframework.podspec'
end

0 个答案:

没有答案