Bigair
Bigair

Reputation: 1592

Firebase app distribution via Fastlane "the server responded with status 404"

I'm trying distribute app using firebase app distribution via fastlane. When I run firebase_app_distribution, it seems to login into Google successfully but somehow at the end it returns 404.

I login in to Google using GOOGLE_APPLICATION_CREDENTIALS

Here is my log.

[12:19:16]: Authenticating with GOOGLE_APPLICATION_CREDENTIALS environment variable:'<path here>'
[12:19:16]: 🔐 Authenticated successfully.
[12:19:16]: ⌛ Uploading the IPA.
+------------------+---------------------+
|              Lane Context              |
+------------------+---------------------+
| DEFAULT_PLATFORM | ios                 |
| PLATFORM_NAME    | ios                 |
| LANE_NAME        | ios distribute_beta |
+------------------+---------------------+
[12:19:18]: the server responded with status 404

What am I doing wrong?

Upvotes: 9

Views: 3611

Answers (1)

Pavlo
Pavlo

Reputation: 451

I had the same issue. I would suggest you following this instruction

  1. Go to your Firebase console

  2. Click App Distribution section under the Release & Monitor tab

  3. Select your project

  4. Verify if the Get Started button has been pressed

Simple thing but useful

Upvotes: 42

Related Questions