Cocoapods没有产生目标

时间:2016-06-20 17:53:34

标签: ios cocoapods target xcode7.3

我遇到一个问题,每当我在podfile中更新或添加新库并运行pod install时,cocoapods都没有为该库创建构建目标;这使得无法调整特定pod的构建设置。

具体来说,最新的GoogleMap pod,GoogleAnalytics pod和MapBox pod可以做到这一点。我仍然在cocoapods上预售1.0。

如果我潜入我的Pods /文件夹,我会看到这些pod的文件夹,但是目标支持文件中没有创建文件夹。

任何人都知道如何解决这个问题?

我的podfile:

platform :ios, '8.0'
pod 'ECSlidingViewController', '~> 2.0.3'
pod 'AFNetworking', '~> 2.5'
pod 'Stripe', '~> 5.0'
pod 'FormatterKit', '~> 1.7'
pod 'GPUImage', '~> 0.1'
pod 'PureLayout', '~> 2.0'
pod 'GoogleMaps', '~> 1.13.2'
pod 'FSCalendar'
pod 'DateTools'
pod 'FZAccordionTableView', '~> 0.1'
pod 'Overcoat', '~> 3.1'
pod 'Mapbox-iOS-SDK', '~> 3.2'
pod 'ISO8601'
pod 'Lookback', :configurations => ['Debug']
pod 'LookbackSafe', :configurations => ['Release']
pod 'QBValidator', '~> 1.0'
pod 'Flurry-iOS-SDK', '~> 7.3'
pod 'UAAppReviewManager'
pod 'TSNPeerBluetooth', '~> 1.0'
pod 'TSNAtomicFlag', '~> 1.0'
pod 'TSNExtensions', '~> 1.0'
pod 'CKStringUtils', '~> 2.0'
pod 'CLLocationManager-blocks', '~> 1.3'
pod 'Socket.IO-Client-Swift', '~> 6.1.0'
pod 'CardIO', '~> 5.3'
pod 'CocoaSecurity'
pod 'SecureNSUserDefaults', '~> 1.0'
pod 'PMTween', '~> 1.3'
pod 'GoogleAnalytics', '~> 3.14'

use_frameworks!

1 个答案:

答案 0 :(得分:0)

您应该像这样修改您的podfile:

platform :ios, '8.0'
use_frameworks!

target 'YourTarget' do
        pod 'ECSlidingViewController', '~> 2.0.3'
        pod 'AFNetworking', '~> 2.5'
        pod 'Stripe', '~> 5.0'
        ...
        pod 'PMTween', '~> 1.3'
        pod 'GoogleAnalytics', '~> 3.14'
end