cocoapods多个目标导致重新定义

时间:2017-02-21 21:37:45

标签: cocoapods cocoapods-1.2

我正在经历很多重新定义'和之前的声明'最近更新我的Podfile的错误。我有多个目标,我在它们之间共享几个pod。我之前使用的是0.XX,最近更新到1.2并且一直在努力跟上Podfile标准。

我正在更新我最近的Podfile:

App.ScreenWidth = (int)UIScreen.MainScreen.Bounds.Width;
App.ScreenHeight = (int)UIScreen.MainScreen.Bounds.Height;

到Cocoa Pods 1.2的预期:


    # Uncomment this line to define a global platform for your project

    platform :ios, '8.0'

    link_with 'Target1', 'Target2', 'Target3', 'Target4', 'Target5', 'Target6'

    pod 'RestKit', '0.24.0'

    pod 'MBProgressHUD', '0.9'

    pod 'MHVideoPhotoGallery', '1.6'

1 个答案:

答案 0 :(得分:0)

我认为这些问题是由于引用/DerivedData/文件夹的图书馆搜索路径添加了错误的搜索路径以及-all_load添加的其他链接标记引起的。