web-dev-qa-db-ja.com

ポッドのインストール、依存関係「*****」は具体的なターゲットでは使用されません

別のプロジェクトがあります。ポッドをインストールすると、コンソールに次のように表示されます。

Analyzing dependencies
[!] The dependency `MMDrawerController (~> 0.5.7)` is not used in any concrete target.
The dependency `ViewUtils` is not used in any concrete target.
The dependency `CPAnimationSequence` is not used in any concrete target.
The dependency `iCarousel` is not used in any concrete target.
The dependency `BlocksKit (~> 2.2.5)` is not used in any concrete target.
The dependency `AFNetworking` is not used in any concrete target.
The dependency `MBProgressHUD (~> 0.8)` is not used in any concrete target.
The dependency `NSString-UrlEncode` is not used in any concrete target.
The dependency `INTULocationManager` is not used in any concrete target.
The dependency `SDWebImage (= 3.7.2)` is not used in any concrete target.
The dependency `Adjust (from `https://github.com/adjust/ios_sdk.git`, tag `v3.4.0`)` is not used in any concrete target.
The dependency `TARTT (from `https://github.com/takondi/tartt-sdk-ios.git`)` is not used in any concrete target.
The dependency `SIAlertView (~> 1.3)` is not used in any concrete target.
The dependency `GoogleAppIndexing` is not used in any concrete target.
The dependency `Gimbal` is not used in any concrete target.

何が問題ですか?プロジェクトには20を超えるtragetがあるため、post_installパターンを使用して正常に動作しますが、私には機能しません。

私のcocoapodバージョンは1.1.1です、plsは助けます。

podfileは次のとおりです。

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'

pod 'MMDrawerController', '~> 0.5.7'
pod 'ViewUtils'
pod 'CPAnimationSequence'
pod 'iCarousel'
pod 'BlocksKit', '~> 2.2.5'
pod 'AFNetworking'
pod 'MBProgressHUD', '~> 0.8'
pod 'NSString-UrlEncode'
pod 'INTULocationManager'
pod 'SDWebImage', '3.7.2'
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v3.4.0'
pod 'TARTT', :git => 'https://github.com/takondi/tartt-sdk-ios.git'
pod 'SIAlertView', '~> 1.3'
pod 'GoogleAppIndexing'
pod 'Gimbal'

post_install do |installer_representation|
    installer_representation.project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['ONLY_ACTIVE_Arch'] = 'NO'
        end
    end
end
25
Chao

Podfileには、ココアポッドをインストールするターゲットの情報が含まれている必要があります。 Podfileのポストインストーラーは、各ターゲットでACTIVE_ArchフラグのみNOに設定します。

アプリに20を超えるターゲット(および現在のPodfileのいくつかの混乱)がある場合は、PodfilePodfile.lockを削除してからpod initを実行してください。 CococaPods gemがアプリの有効なPodfileを作成します。次に、アプリが使用するCocoaPodsを貼り付け、インストーラーの指示を新しいPodfileに貼り付け、pod installを使用してcocoapodsを再インストールしてみます。

正しいターゲットの間にポッドの指示を置くことを忘れないでください。

CocoaPodsサイト Podfileについて見てください。

したがって、Podfileは次のようになります。

target 'YourTargetName' do

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'

pod 'MMDrawerController', '~> 0.5.7'
pod 'ViewUtils'
pod 'CPAnimationSequence'
pod 'iCarousel'
pod 'BlocksKit', '~> 2.2.5'
pod 'AFNetworking'
pod 'MBProgressHUD', '~> 0.8'
pod 'NSString-UrlEncode'
pod 'INTULocationManager'
pod 'SDWebImage', '3.7.2'
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v3.4.0'
pod 'TARTT', :git => 'https://github.com/takondi/tartt-sdk-ios.git'
pod 'SIAlertView', '~> 1.3'
pod 'GoogleAppIndexing'
pod 'Gimbal'

post_install do |installer_representation|
  installer_representation.project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['ONLY_ACTIVE_Arch'] = 'NO'
    end
  end
end
end
40
kamwysoc

下のブロックにポッドファイルを追加するだけです

target 'YourApp' do
  pod '*******', '~> 1.0'
end
33
Darshit Shah

少し奇妙ですが、Gimbal SDKにはiCarouselが含まれているため、ポッドファイルに問題がある可能性があります。

ソース

0
kevinl