本文介绍了Xcode 7.2成功的档案将不会在管理器中显示,但会在档案文件夹中显示有关派生数据文件夹的信息的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 Cocoapods 0.39.0 Xcode 7.2 ,我有一个 项目会成功存档,但不会在管理器中填充 。当我在一个空白项目中测试podfile时,存档显示在 Organizer 中就好了。

I am using Cocoapods 0.39.0 and Xcode 7.2, I have a project that archives successfully but does not populate in organizer. When I tested my podfile in a blank project the archive showed up in the Organizer just fine.

在尝试解决此问题时,我发现在派生数据上方有一个存档文件夹。实际上,我在那里找到了该项目的所有.xcarchive文件,这些文件不会在管理器中显示。

While trying to troubleshoot this I found that there was an Archives folder above Derived Data. There I actually found all the .xcarchive files of the project that won't show up in the Organizer.

当单击文件详细信息时,我还注意到可以使用的存档大小(测试项目为228.3 MB),但是我要处理的主项目的大小为0个字节。

When clicking on the file details, I also noticed that the working Archive had a size (228.3 MB for the test project) but my main project I want working has a size of 0 bytes.


推荐答案

弄清楚了。


  1. 构建设置安装目录 c $ c>

  2. 删除了 @executable_path /../ Frameworks 作为安装目录的值

  3. 在安装目录中键入以下内容 $(LOCAL_APPS_DIR)

  1. Searched Installation Directory in Build Settings
  2. Removed @executable_path/../Frameworks as the value for Installation Directory
  3. Typed the following for the Installation Directory $(LOCAL_APPS_DIR)

参考: Xcode成功存档了我的应用程序,但是Archives Organizer并未列出我的存档部分

这篇关于Xcode 7.2成功的档案将不会在管理器中显示,但会在档案文件夹中显示有关派生数据文件夹的信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 09:26