Podfile 中的 "../"-6ren"> Podfile 中的 "../"-这是我想在 Podfile 中使用的依赖项。 platform :ios, '8.0' use_frameworks! target ‘Vanified', :exclusive => true do-6ren">
gpt4 book ai didi

ios - Cocoapod 安装 : Error at line pod "Vanified ", :path => Podfile 中的 "../"

转载 作者:行者123 更新时间:2023-11-28 21:46:47 26 4
gpt4 key购买 nike

这是我想在 Podfile 中使用的依赖项。

platform :ios, '8.0'

use_frameworks!

target ‘Vanified', :exclusive => true do
pod "Vanified", :path => "../"
//Note "Vanified" is my Exaple_Framework
pod 'Specta', '~> 0.2.1'
pod 'Expecta'
end

target 'Tests', :exclusive => true do

end

注意:在此之前,我按照 https://cocoapods.org/ 给出的步骤操作

最佳答案

:path => 指的是到另一个 pod 的本地路径。

也就是说,这没有意义:

target ‘Vanified', :exclusive => true do

pod "Vanified", :path => "../"

end

这基本上意味着“获取 Vanified 作为 Vanified pod 的本地依赖项。”

您也不需要在测试目标中引用 Vanified

相反,您应该使测试目标依赖并链接到您的 pod 目标(技术上,静态库或动态框架)。

您可以通过转到测试目标的 Build Phases 并确保 (1) VanifiedTarget Dependencies 中并确保(2) VanifiedLink Binary with Libraries 中。

关于ios - Cocoapod 安装 : Error at line pod "Vanified ", :path => Podfile 中的 "../",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29862014/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com