Pod没有正确安装

时间:2017-08-17 14:28:47

标签: ios cocoapods xcconfig

我一直在安装pods并且pod正确安装。但是,在项目导航器中,.xcconfig文件为红色,我无法在项目中设置相同的>信息 - >配置,因为它们没有列出,只列出了没有。调试时,我发现xcode在以下路径中访问.xcconfig文件

/Volumes/Macintosh HD/Users/xxxxxxxxxx/Documents/xxxxxxxx/app/Pods/Pods/Target Support Files/Pods-broadcastuploadSetupUI/Pods-broadcastuploadSetupUI.release.xcconfig

/ Pods有两次,因此我收到以下错误:

diff: /Podfile.lock: No such file or directory
diff: /Manifest.lock: No such file or directory
error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.

我正在使用Xcode 9 beta。有人可以帮忙吗?

P.S,我尝试过sudo gem install,pod update,disintegrate,install以及互联网上提供的所有解决方案。如果有人能帮忙,我会很高兴

这是我的podfile:

#platform :ios, ‘11.0’
source 'https://URL_TO_ACCESS_PODSPEC_FOR_POD'
source 'https://github.com/CocoaPods/Specs.git'


target 'app' do
pod 'objective-zip', '~> 1.0'
pod 'AssistScreenShareKit'
use_frameworks!
end

target ‘broadcastupload’ do
    pod 'AssistScreenShareKit'
use_frameworks!
end

target ‘broadcastuploadSetupUI' do
pod 'AssistScreenShareKit'
use_frameworks!
end

错误:

The file “Pods-app.release.xcconfig” couldn’t be opened because there is no such file. (/Volumes/Macintosh HD/Users/xxxxxxxx/Documents/xxxxx/app/Pods/Pods/Target Support Files/Pods-app/Pods-app.release.xcconfig)

3 个答案:

答案 0 :(得分:0)

安装pod的步骤

  1. 打开终端窗口,并将$ cd插入项目目录。
  2. 要创建Podfile,您需要运行$ pod init.
  3. 打开您的Podfile。第一行应指定平台和 版本支持。
  4.  platform :ios, '9.0'
    
     use_frameworks! target 'yourProjectName' do
         pod 'Alamofire' end
    
    1. 然后安装pod
    2.   

      pod install

答案 1 :(得分:0)

首先删除所有pod和Podfile.lock

  1. 打开终端并转到文件夹路径
  2. 通过此

    编辑您的podfile

    platform :ios, '8.0' use_frameworks! target 'MyApp' do //add your all pods end

  3. pod install

  4. 关闭xcode并打开MyApp.xcworkspace文件
  5. 检查更多:Command-line Reference

    这会对你有帮助。

答案 2 :(得分:0)

更新您的Cocoapods版本,我在Cocoapods 1.5.3中遇到了这个问题,该问题已在1.6.1中修复

要做那个打开的终端,然后键入 gem install cocoapods