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
1
vote
0 answers

Signing key fingerprints do not match our records for this app

I recently integrated firebase app distribution and i'm uploading AABs. Thing is that firebase resigning my app with a different signature, and some of my integrations with google were failed. Google pay - i'm getting the following error when trying…
Udi Oshi
  • 6,787
  • 7
  • 47
  • 65
1
vote
0 answers

This app cannot be installed because its integrity could not be verified. FireBase ios

I am facing a problem installing a testing app through Firebase app distribution. But just one of the apps. The profile is installed, UDID is added. Just one particular app does not launch. Any suggestions?
Tetiana
  • 63
  • 6
1
vote
1 answer

How to management certificate for 1 app but have many bundle id?

Hi I'm new for iOS development, I created my application and I separate bundle id for 3 ids for each environment ( dev, staging, production ) example. com.xxx.bb.dev com.xxx.bb.staging com.xxx.bb For my requirement now, I have to link my app to…
P. Nawin
  • 53
  • 1
  • 5
1
vote
1 answer

Firebase App Distribution: "Could not find the APK" (when having built an AAB)

I'm trying to upload AAB to App Distribution (linked to Google Play) and I'm getting this error: Execution failed for task ':mobile:appDistributionUploadRelease'. > Could not find the APK. Make sure you build first by running ./gradlew…
1
vote
1 answer

Action 'firebase_app_distribution' not available, run `fastlane actions` to get a full list

❯ bundle exec fastlane run firebase_app_distribution [✔] +------------------------------------+---------+----------------------------------------------------+ | Used plugins …
1
vote
1 answer

Firebase App Distribution failed to fetch app information: [400] Request contains an invalid argument on multi-firebase Android project setup

I have an Android app that has 2 different firebase projects, one for DEBUG builds and one for RELEASE and they have their google-services.json file respectively. app |-src/main/debug | |-google-services.json (Points to Firebase with ID:…
Hossain Khan
  • 6,332
  • 7
  • 41
  • 55
1
vote
1 answer

Firebase Authentication does not work when user downloads apk from Firebase App Distribution

I have developed a mobile application with Android Studio that still works by downloading it from the Play Store. The application uses the authentication provided by Firebase and I have added the sha1 from Google Play Console, therefore it works…
1
vote
0 answers

Firebase App Distribution doesn't work with Codemagic

I've setup Firebase App Distribution for my Flutter Project and it works perfectly local. But if I try to run it on Codemagic I get teh following error: Error: failed to fetch app information. HTTP Error: 403, Firebase App Distribution API has not…
Dix20
  • 178
  • 2
  • 8
1
vote
1 answer

Integrating FireBase App Distribution with Jenkins - Execution failed for task ':app:appDistributionRelease'

I'm new to jenkins server and would like to ask some help and directions for this, I currently have an application that is working and building properly with firebase app distribution function it works locally and can distribute my app I followed…
1
vote
2 answers

Authenticate and use Firebase in non-interactive environments

I work with Android mobile application, where source code is maintained in Azure. I want to automate the build process and upload the .apk file in Firebase App Distribution, as per the requirment. I used Azure Pipeline to automate the build process.…
1
vote
2 answers

How to test a React Native App before going to production?

Basically I've finished my beta React Native app, and I'm ready to test it with a private group of people, in order to know if it's stable and to correct possible bugs. I am using firebase as a backend, so I am wondering if it's better to Firebase…
1
vote
1 answer

How to skip app build process while doing Firebase app distribution when the apk is already built

I have added a firebase distribution job in Gitlab. All it does is run the gradle task appDistributionUploaRelease . I have set the apkPath in there as well. So my build.gradle looks something like firebaseAppDistribution { …
LateNightDev
  • 185
  • 1
  • 2
  • 10
1
vote
1 answer

Firebase_cli_path: missing path to firebase cli tool. Please install firebase in $PATH or specify path

Travis CI throwing the firebase_cli_path. I am not sure how can I specify this path. In Google document, it mentioned that this path will automatically detect. Well, then I need to install the firebase tools into Travis CI, How can I do that? This…
Manu Ram V
  • 369
  • 1
  • 3
  • 23
1
vote
0 answers

Is there any API or firebase command to obtain a list of UUID's for iOS devices in Firebase App Distribution

We have a few cross-platform apps in development, for android setting up a CircleCI workflow to deploy to Firebase app distribution has been fairly straight forward, but for iOS I can't seem to find a good way to obtain the UUID for iOS testers that…
1
vote
1 answer

Firebass App Disitrbution upload apk with gradle

My app consists of two dynamic modules and instant app. I'm using app bundle to upload my production builds to the Play Store. When I'm trying to upload apk to the Firebase App Distribution, I use command: ./gradlew assembleVariantRelease…