Fastlane 分发失败,出现错误“App Distribution 找不到您的应用程序”

问题描述 投票:0回答:5

我正在为 Android 和 iOS 开发 React-Native 项目。

我使用 Fastlane 将 Android 应用程序分发到 Firebase App Distribution。我已按照 firebase 说明fastlane 说明 来设置这些工具。

在快车道部分,这是我的

Fastfile

desc "Submit a new Beta Build to firebase app distribute"
  lane :beta do
    gradle(task: "clean assembleRelease")

    firebase_app_distribution(
      app: "1:4823523451:android:fb106cd9iu76gr3ededc0",
      firebase_cli_token: "1//0cDO6RQESnRMvCgYIACAAgAwSNwF-L9IrPk97hOEsuXxXNHXUfpKQRsiAsqu_mmGhGmOPoIfdfThgjHoKlJS4X4auLr_d2QoLSXg",
      groups: "qa-team, trusted-testers",
      release_notes: "my 1st release",
      testers: "[email protected]",
      debug: true)
  end

上面的

firebase_cli_token
是我通过运行命令获取的刷新令牌
bundle exec fastlane run firebase_app_distribution_login

应用程序 ID 也正确。

当我运行

fastlane beta
时,我最终出现以下错误,其中显示
App Distribution could not find your app. Make sure to onboard your app by pressing the "Get started" button on the App Distribution page in the Firebase console
(我在截图中隐藏了一些敏感信息):

enter image description here

我没有看到提到“开始”按钮的错误消息。当我转到我的 firebase 控制台时,apk 文件会上传到那里:

enter image description here

那么,为什么我在运行时遇到这个错误

fastlane beta

(顺便说一句,在上面的屏幕截图中,您可以看到它表明邀请了一名测试人员,实际上我在 firebase 控制台上手动添加了该测试人员,如您所见,我的

Fastfile
已定义
testers
但它们并未添加为测试人员fastlane,我想这是因为我遇到的错误。)

android firebase react-native fastlane
5个回答
16
投票

当您单击应用程序分发选项卡时,Android 和 iOS 项目的标题旁边有一个下拉菜单。您必须单击两者的“开始”。


5
投票

如果您的项目中有多种风格/应用程序,请确保按每个风格/应用程序的“开始”按钮(检查“应用程序分发”标题附近的下拉列表)

如果您仍然遇到问题,请检查使用 debug=true 给出的 API 响应,因为“无法找到您的应用程序”消息非常具有误导性,并且每个 404 响应都会出现。就我而言,我输入了错误的“组”参数。


1
投票

我也有同样的错误。我通过更新插件解决了这个问题:

bundle exec fastlane update_plugins

此外,fastlane 帮助推荐了最新版本。我安装它执行:

sudo gem install fastlane

0
投票

就我而言,我已使用 Firebase 服务帐户凭据对 Fastlane 进行了身份验证。我遇到了同样的错误

应用程序分发找不到您的应用程序。确保加入您的 通过按应用程序分发页面上的“开始”按钮来应用程序 在 Firebase 控制台中

我注意到有一个额外的服务帐户我配置错误。删除帐户后,我就可以分发了。


0
投票

确保切换到IOS/Android并点击开始。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.