【问题标题】:React native xcodebuild archive failed with exit status 65 on Fastlane - RealmJS PodsReact 本机 xcodebuild 存档在 Fastlane 上失败,退出状态为 65 - RealmJS Pods
【发布时间】:2021-12-14 08:45:33
【问题描述】:

我正在尝试使用 fastlane 自动将我的 react 本机应用发布到应用商店。使用 xcode 手动归档应用程序是成功的。但是,当我使用 Fastlane 时,构建应用程序步骤失败,退出状态为 65。

错误:无法加载文件列表的内容:'/Target Support Files/RealmJS/RealmJS-xcframeworks-input-files.xcfilelist'(在项目'Pods'的目标'RealmJS'中)

错误:无法加载文件列表的内容:'/Target Support Files/RealmJS/RealmJS-xcframeworks-output-files.xcfilelist'(在项目'Pods'的目标'RealmJS'中)

我已尝试删除我的 Pods 文件夹 Podfile.lock 并重新安装 Pod。但是,realmJS 的问题仍然存在。

XCode 版本: 版本 13.0 (13A233)

反应原生: 0.65.1

Realm-js: 10.8.0

快车道: 2.197.0

有人遇到过类似的问题吗?

【问题讨论】:

    标签: xcode react-native realm fastlane realm-js


    【解决方案1】:

    终于搞定了。原来我在 Fastfile 中为 build_app 步骤指定了错误的配置。在创建不同的方案后,我已将配置从“发布”重命名为“发布阶段”。

    所以来自:

    build_app(
          configuration: "Release",
          export_method: "app-store",
    ...
    )
    

    收件人:

    build_app(
          configuration: "Release Staging",
          export_method: "app-store",
    ...
    )
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2020-07-30
      • 1970-01-01
      • 2020-03-22
      • 2020-12-19
      • 2020-09-02
      相关资源
      最近更新 更多