Questions tagged [firebase-app-distribution]

Firebase App Distribution makes distributing your apps to trusted testers painless.

Firebase App Distribution helps get your apps onto testing devices quickly, you can get feedback early and often. If you use Crashlytics in your apps, you’ll automatically get stability metrics for all your builds, so you know when you’re ready to ship.

Currently Firebase App Distribution is a beta release. This means that the functionality might change in backward-incompatible ways. A beta release is not subject to any SLA or deprecation policy and may receive limited or no support.

Firebase App Distribution can be used with both iOS and Android. There are different ways to distribute your apps:

IOS:

Distribute IOS apps with console

Distribute IOS apps with cli

Distribute IOS apps with fastlane

Android:

Distribute Android apps with console

Dsitribute Android apps with cli

Distribute Android apps with fastlane

Distribute Android apps with gradle

158 questions
7
votes
1 answer

Facebook and Google login doesn't work for Android AAB build uploaded to Firebase App Distribution

Solved: The Firebase troubleshooting page has been updated: When you upload an AAB to App Distribution, Google Play automatically resigns the generated APK using a test app signing key certificate. When prompted, you must register your app with API…
7
votes
2 answers

How to get Firebase App Distribution to work for different flavors with Kotlin DSL?

I have an issue with Firebase Distribution configuration. Here's a part of my build.gradle in Kotlin DSL flavorDimensions("dim") productFlavors { create("fl1") { applicationIdSuffix = ".fl1" setDimension("dim") …
7
votes
2 answers

Is there a way to configure separate serviceCredentialsFile for each Android build variant with Firebase App Distribution?

We have several Firebase projects which share the same code base via build types and flavors. We aim to use the app distribution via Gradle and authenticate using service account credentials. In the docs, it is shown that firebaseAppDistribution…
Emre Dirican
  • 397
  • 5
  • 15
6
votes
1 answer

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…
Bigair
  • 1,452
  • 3
  • 15
  • 42
6
votes
2 answers

Issue Linking to Google Play in Firebase App Distribution

I'm attempting to distribute an Android app bundle via Firebase App Distribution. I'm following the docs here: https://support.google.com/firebase/answer/6392038?authuser=1 I seem to be getting stuck on the "How to Link" section, however, as the…
jwBurnside
  • 849
  • 4
  • 31
  • 66
6
votes
2 answers

How can i change google account that accept Firebase App Distribution invitation?

I receive an Firebase App Distribution invitation on my corporate google account. But when I accept invitation by clicking on "Go setup" in email, I mistakenly accepted the invitation with my personal google account in my Android phone. I have tried…
6
votes
2 answers

Firebase App Distribution found more than 1 output file for this variant

I am adding "Firebase App Distribution" based on Google document to my Android application but after running appDistributionUploadRelease Gradle task I get this error message: 10:18:03 PM: Executing task 'appDistributionUploadRelease'... Executing…
Mohsen Mirhoseini
  • 8,454
  • 5
  • 34
  • 59
5
votes
3 answers

Firebase distribution for iOS

We are develop an iOS app using react-native. And every time there is an update from developer, developer need to build and install on QA phone for testing. Now, I am trying to use fastlane and firebase app distribution, to distribute new app for…
Ganda Rain Panjaitan
  • 833
  • 1
  • 12
  • 28
5
votes
1 answer

Firebase App Distribution Upload error, Missing information about the APK path

Having problems when uploading app release apk to firebase using the gradle ./gradlew appDistributionUploadRelease command in terminal. This issue started after I updated a few of my build tools, updating gms to classpath…
Oyebisi
  • 562
  • 2
  • 9
  • 23
5
votes
3 answers

Firebase app distribution url returns 404 error

I have recently finished developing an application and I wanted to publish it between few friends to test it. I have sent it to 4 different users where 3 opened it without any problem while the 4th user receives the following error: Is there any…
Ben
  • 1,737
  • 2
  • 30
  • 61
5
votes
2 answers

Firebase - iOS App Installation on iPhone X is not working

I uploaded an iOS enterprise build using App-Distribution feature of Firebase Console and shared with my testers. We are able to download it on all devices except on iPhone X. The error shows "os version not supported". On click of this error, it…
Ruchi
  • 411
  • 4
  • 13
5
votes
2 answers

Firebase App Distribution get registered tester's UDID

Is there any way to get registered tester's UDID. We deleted wrongly mail which comes from Firebase accidentally. Before Firebase App Distribution, we can find it in Fabric Beta. But now we can not access directly to UDID.
yildirimatcioglu
  • 170
  • 2
  • 18
5
votes
1 answer

Firebase | How can I change the App Distribution's App Icon

I migrated Fabric project to Firebase. But I can't find any options for an app icon in the App Distribution. How can I change my app icon?
Den
  • 3,179
  • 29
  • 26
5
votes
3 answers

Permission denied with Firebase distribution android app using service account credentials mode

I'm trying to migrate from Fabric to Firebase since Fabric will not be available beyond March 31, 2020. I already have done the first steps: adding plugins and dependencies to gradle, adding analytics json file, even crash reporting, and all seems…
5
votes
1 answer

Is there an API for managing testers for Firebase App Distribution?

I'm wondering if there is some sort of API I can call that lets me pass testers to either add or remove? I want to call the same code as what happens when you upload a CSV (see here).. but with less CSV and more Restful HTTP API (or equivalent). I…
johndo
  • 71
  • 5
1
2
3
10 11