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
1 answer

Which APK file should I upload to Firebase App Distribution?

When I build my app with >flutter build apk, it creates five files: app-arm64-v8a-release.apk (8.4MB) app-armeabi-v7a-release.apk (8.1MB) app-release.apk (20.1MB) app-x86_64-release.apk (8.6MB) output.json (2KB) But when I want to upload my app…
Dave
  • 28,833
  • 23
  • 113
  • 183
1
vote
1 answer

Firebase app distribution not working for iOS

I'm having a trouble with iOS part of Firebase App Distribution (android works without any issues). My steps: I added GoogleService-Info.plist to Runner folder added "firebase_analytics: ^5.0.6" to project created .ipa file through…
pb4now
  • 1,305
  • 4
  • 18
  • 45
1
vote
0 answers

Can't upload apk to firebaseAppDistribution

What I do: > export FIREBASE_TOKEN=*** > export GOOGLE_APPLICATION_CREDENTIALS=/home/MyProject/app/serviceCredentialsFile.json > ./gradlew --stop > ./gradlew assembleDebug appDistributionUploadDebug Result: > Task :app:appDistributionUploadDebug…
NickUnuchek
  • 11,794
  • 12
  • 98
  • 138
0
votes
0 answers

How to deploy android APK to firebase app distribution through azure pipeline

I am trying to setup a pipeline that adds the apk to the app distribution in firebase. I have the following yml: Getting error in Authenticate Firebase CLI using service account key. # Step 19: Install Firebase tools. - task: CmdLine@2 …
0
votes
0 answers

Android app Firebase distribution with Github Actions

I'm trying to setup a Firebase Distrbution pipeline in Github Actions and I have the following check_and_deploy.yml: name: Android CI on: push: # tags: # - 'v*' pull_request: branches: - main jobs: test: name:…
noloman
  • 11,411
  • 20
  • 82
  • 129
0
votes
0 answers

android proper app distribution using gradle

I am trying to create a gradle script to share apk with testers using the code below. ext { TESTERS_LIST = "" } task uploadToFirebase(type: GradleBuild) { /* some logic here */ tasks = ['appDistributionUploadBeta',…
0
votes
0 answers

fastlane gradle build version name and code different than one uploaded to firebase

When building and uploading a test build to firebase the version code and name that the APK is build with are different than the version code and name that is visible in Firebase app distribution. How can this be? This is my fastlane…
MESP
  • 486
  • 2
  • 17
0
votes
1 answer

could not load root hash from incremental install

We have set up Firebase App Distribution to use our app bundle. It is signed by Google Play (play store signing using their key) after we linked to our account on the Firebase Dashboard. When installing the app, the Firebase App Tester redirects to…
0
votes
0 answers

How can I add custom name for apk?

I use teamcity for CI and upload build with custom name to the Firebase App Distribution, but after downloading the build has default name "app.apk". How can I change it?
Art
  • 285
  • 1
  • 3
  • 11
0
votes
0 answers

how can in configure firebase testing groups per productFlavor in gradle file

i have a problem with my android gradle build script. We use Firebase AppDistribution to invite testers. The goal is to publish the new development version via Jenkins and each product flavor has it's own Firebase Tester group. With this approach,…
0
votes
1 answer

I can't seem to shake this fastlane issue on GitHub actions: " Your Ruby version is 3.0.2, but your Gemfile specified 2.7.7"

I have been building my mobile pipelines both react-native and flutter pretty much the normal way. I am trying to get this first time fastlane pipeline up and so far it's been a bit rough. It's a react-native project with both android and iOS…
black sensei
  • 6,528
  • 22
  • 109
  • 188
0
votes
0 answers

Is there any way to restore apk uploaded on firebase app distribution?

Is there anyway to restore apks uploaded on Firebase after expiration(5 months) ?
0
votes
0 answers

Is there any way to publish the build for the same test group automatically on firebase?

I'm starting to use the firebase app distribution linked to bitrise. I would like to every successful build on bitrise it publishes on firebase app distribution for the same group, without need to on every build I open the firebase console and add…
arcbueno
  • 1
  • 1
0
votes
0 answers

fatal: detected dubious ownership in repository at '/github/workspace' in github action for Firebase app-distribution

I am trying to create a CI/CD pipeline for Android project. What I want to achieve is to upload the debug build in Firebase App distribution when the github Action is triggered. I am using…
0
votes
0 answers

Is there any way to remove the (1) at the end when doing firebase app distributions?

I am deploying a flutter app to firebase app distribution via the firebase cli and fastlane and never figured out how to remove the parentheses in the end. I removed the '+' at the end of the version number in our flutter project's pubspec.yaml but…
mlopez99
  • 11
  • 1