189 questions
0
votes
1
answer
53
views
Why does Android app crash after installing the latest version with Firebase App Distribution?
I am new to Android development and I'm using the Firebase App Distribution tool. It successfully prompts the user when there is a new version available to download, and in the notification drawer it ...
0
votes
0
answers
32
views
Error while distribute app to firebase using Azure pipeline
After iOS build pipeline in Azure pipelines, I am running 'Distribute app to firebase' task but it fails with below error
Attempting to distribute IPA: /Users/runner/work/1/a/FinalIPA/**.ipa
App ID: *...
1
vote
1
answer
86
views
Is it possible to revert to an older version via Firebase App Distribution?
I have released the latest version 1.1.5 of my Flutter app on the app stores (Play Store & App Store). I am currently working on version 1.1.6, but I accidentally published version 1.1.8 via ...
0
votes
0
answers
82
views
Firebase App Distribution with Expo for iOS and Android, reliability, and potential issues
I’m building a mobile app using Expo (managed workflow) targeting both iOS and Android. I want to use Firebase App Distribution to share test builds with my testers easily.
However, I’m uncertain ...
0
votes
1
answer
95
views
Auto-increment Android versionCode for Firebase App Distribution via GitHub Actions & Remote Config?
Problem statement -
I have written YML to distribute Android APK through GitHub Actions to the Firebase app distribution.
Whenever I distribute app it takes the version name and version code from ...
0
votes
0
answers
238
views
Error: "The authenticated user does not have the required permissions on the Firebase project" Publishing to Firebase App Distribution using Fastlane
What I am doing
I am trying to use FastLane and plugin firebase_app_distribution to automate the CI process to Firebase App Distribution.
Here is my lane script
lane :distribute do
build_android_app(...
0
votes
0
answers
44
views
Does Firebase App Distribution API support chunked or multipart upload?
I'm struggling to find a document says whether chunk based upload or multipart upload is supported in /upload/v1/{app=projects//apps/}/releases:upload. I can see that App center performs chunk based ...
1
vote
0
answers
63
views
Error 400 when trying to upload apk to firebase app distribution via GoogleApis -> FirebaseAppDistributionApi
I was trying to upload apk to firebase app distribution via dart code using GoogleApis
final binaryFile = File(binaryPath);
final binaryFileLength = binaryFile.lengthSync();
...
0
votes
0
answers
220
views
How to get an ACCESS_TOKEN for a Firebase App Distribution API call?
On my project we use Google Firebase as a distribution tool. There is a Firebase App Distribution API CURL call with the method projects.apps.releases.list that looks like this:
curl \
'https://...
0
votes
0
answers
43
views
Can Firebase App Distribution aab app submit to Google Play Console
I use Firebase App Distribution for my android app.
my app is aab file.
I uploaded aab app file for the first time. Then, I was warned that my aab app file is signed by test certificate.
I want to ...
0
votes
1
answer
41
views
Firebase distribution api failed OAuth2 authorization
I need help understanding why I can't get info from distribution api.
I already check that I have the api enabled in the console, I double checked the service account to make sure its correct and ...
0
votes
1
answer
31
views
Does one key generated by the fire base service account work for all the app under one project
So, I have a project called XYZ with two apps: xyz.dev and xyz.prod. I need to add Firebase App Distribution, which requires generating a key from a service account. My question is, will the generated ...
0
votes
0
answers
37
views
App release through firebase app distribution failed to update
I have this flutter app that being distributed over Firebase App Distribution. we pushed some features recently, But when trying to update the latest release from existing release (38->76), it asks ...
0
votes
0
answers
156
views
Enable Firebase App Distribution for a new app by automation?
I want to enable Firebase App Distribution for my newly created Firebase app. I use this code to deploy an APK to Firebase in GitHub:
- name: Deploy App to Firebase App Distribution
...
0
votes
0
answers
71
views
Gradle Firebase App Distribution Properties Not Included in Build Variant
I have integrated my build.gradle with firebase app distribution. It worked well when I put the firebaseAppDistribution block inside the buildType. But I want to add the release notes based on app ...
0
votes
2
answers
235
views
how to capture CLI output for specific variable in firebase app distribution CLI
how to capture testing_uri from CLI output as described in this documentation for firebase app distribution. Is testing_uri exposed as environment variable or should i just parse the output with some ...
2
votes
1
answer
594
views
Firebase App Distribution Login to firebase using gcloud service account on azure
I'm attempting to set up Firebase App Distribution in our Azure Pipeline for our app, using a service account for authentication. However, I'm encountering the following error:
/bin/bash --noprofile ...
2
votes
2
answers
799
views
For Firebase App Distribution , how to set version number from Github Action?
I want to set the version number from the GitHub action script for Firebase App distribution. Here is the place:
I have already tried using the below Github action script, but it seems there are no ...
1
vote
1
answer
72
views
Bitbucket/Firebase-deploy upload returned 400
I am migrating CI from appcenter to bibucket and firebase.
The build is okay, but I am getting error on deploying the file to Firebase.
Here's the error
INFO: Executing the pipe...
INFO: Starting ...
1
vote
1
answer
522
views
Fastlane pipeline iOS: App Distribution halted because it had a problem uploading the IPA
In my iOS application I am facing the issue when trigger the pipeline for distribute the application to firebase at DEV environment.
But in production/adhoc environment it was working well and able to ...
1
vote
1
answer
243
views
Error: "Precondition check failed" when using Firebase App Distribution to distribute AAB
I'm trying to distribute an Android App Bundle (AAB) using Firebase App Distribution with the following command built with flutter:
firebase appdistribution:distribute build/app/outputs/bundle/...
1
vote
1
answer
787
views
Firebase app distribution, failing to authenticate with service account
I am using firebase app distribution via firebase CLI in bitbucket pipeline to deploy app to the firebase.
As long as i started to get errors:
HTTP Error: 401, Request had invalid authentication ...
1
vote
2
answers
428
views
Firebase App Distribution: Click download, "Item not found" in Play Store
I have an unreleased Android app that I am trying to test using Firebase App Distribution. The app is built using Fastlane.
I set up a test group with one account, [email protected], and I am logged into ...
1
vote
2
answers
298
views
Firebase app distribution violating google play policy
I've been using firebase app distribution since over a year for a closed testing app on the play store. I suddenly received a suspension warning for the following reason :
Device and Network Abuse ...
0
votes
0
answers
228
views
Firebase App Distribution - Update vs Fresh Install
We are using Firebase App Distribution to send test APKs to our QA team, but one of the most common issues since the start of it is that it seems like the "current" app gets uninstalled and ...
1
vote
0
answers
262
views
While Running Github Actions Pipeline: No Signing Certificate "iOS Development" found: No "iOS Development" signing certificate matching team ID
Flutter CI CD Pipeline Using Github Actions.
When running
xcodebuild -workspace Runner.xcworkspace -scheme Runner -configuration "Release-staging" DEVELOPMENT_TEAM=XXXXXXXX -sdk 'iphoneos' -...
1
vote
1
answer
273
views
Firebase App Distribtion AAB signing key?
I'd like to migrate to App Bundle for my prod build variant for Play store away from APKs.
Firebase App Distribution says it now supports distributing AABs, but needs a Google Play linked.
AABs are ...
1
vote
1
answer
2k
views
Fastlane fails with uploading APK to Firebase App Distribution in CI
I have a flutter app and use fastlane on a CI server to build and upload to Google Play Console and Firebase App Distribution.
When aiming for Play Console the upload of the AAB is stopped with "...
0
votes
0
answers
279
views
Uploading from Azure Pipeline fails but works from terminal
I am working to get the azure pipeline yaml to upload the generated apk from the build.
The build agent is a Windows machine. I am working from a mac terminal.
When I upload from the mac terminal, ...
1
vote
1
answer
1k
views
Firebase App Distribution: Installing test apps from App Tester fails with exception
After updating to the latest Android 14 update (Jan 5 security update), I can no longer install APKs from App Tester. Nothing else in our build process has changed, we've verified apk signing is ...
7
votes
1
answer
2k
views
New Uploads in Firebase App Distribution Cannot be Downloaded Suddenly [closed]
Our team has been using Firebase Distribution to test our apps without encountering any issues. However, today, we are unable to download anymore. The Playstore page shows something like this:
What we ...
0
votes
1
answer
416
views
Google API Python Client Firebase App Distribution HTTP 400
I'm trying to list my builds that I have uploaded to Firebase App Distribution with the help of the google-api-python-client however I always get a HTTP status code 400.
I have created a service-...
1
vote
0
answers
955
views
Firebase App Distribution How to update the app to a new version, without uninstall the current version
I'm working on an Android development and I want the testers to update the app without uninstalling the current version of the app.
The situation is like, when developers make a pull request to a ...
2
votes
0
answers
141
views
How do I add Firebase app Distribution in-app feedback to a flutter app?
I have built a flutter app which I am sharing to users via Firebase App Distribution. I would like to take advantage of the tester feedback of the App Distribution, however, I cannot seem to find a ...
1
vote
1
answer
680
views
fastlane firebase_app_distribution get download url
I'm uploading my apk to firebase using fastlane
using this code:
result = firebase_app_distribution(
app: app,
firebase_cli_token: firebase_cli_token,
...
0
votes
1
answer
1k
views
flutter ci cd with github action and firebase app distribution
im new with ci cd
so im trying to distribute my flutter project via github action
im following this youtube link https://www.youtube.com/watch?v=bMbJdZOWl2A
it kinda work, but the version of app in ...
1
vote
2
answers
546
views
Troubleshooting Codemagic Deployments with Changing SHA1 Key for Firebase App Distribution
Can anyone help me solve a puzzle regarding deployments in Tech? I'm trying to perform deployments with Codemagic on Android using Firebase App Distribution, but I'm encountering an issue with the ...
2
votes
1
answer
864
views
Firebase App-Distribution App cannot be updated, must be uninstalled before installing the new version
I am currently working on a Flutter project. I have set up a GitHub Action pipeline where the Flutter App is built for Android. After the build, the apk is uploaded to Firebase App-Distribution. These ...
9
votes
1
answer
2k
views
Firebase app distribution icon does not get updated
I am trying to update the Firebase app distribution logo. After uploading my client App to Firebase, the logo remains as a basic avatar image, that is, if the App is called "Excellent", the ...
5
votes
0
answers
425
views
Linking Firebase App Distrubtion with Google Play - App is not on a published track in Google Play
I am trying to link my Google Play Android's App with Firebase App Distribution in order to upload an AAB file to Firebase.
I am pretty sure I've done everything right, but Firebase keeps telling me:
...
0
votes
1
answer
1k
views
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: ...
1
vote
1
answer
30
views
Fastlane build saying that ProviderScope not found
I tried releasing the app to firebase app distribution using fastlane and when I run the app, it throws an error saying that ProviderScope is not found. The app has been made on top of Riverpod state ...
1
vote
0
answers
709
views
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:
...
0
votes
1
answer
779
views
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 ...
2
votes
0
answers
164
views
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?
0
votes
1
answer
1k
views
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 ...
0
votes
1
answer
200
views
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 ...
5
votes
3
answers
1k
views
"Firebase App Distribution Admin" role is missing
I'm struggling to configure the firebase app distribution to deploy my android application. But I'm receiving the following error:
App Distribution halted because it had a problem uploading the APK:
[...
3
votes
1
answer
350
views
firebaseAppDistribution gradle configuration overwrite problem
I want to use firebaseAppDistribution in my project and I want to customize it fo every build type.
I have three buildType debug, staging and release. Each buildtype has a different destination group ...
4
votes
1
answer
3k
views
Flutter build ipa not working in Firebase app distribution
I am using Firebase App distribution over a year now to deliver my Flutter app releases to my testers and it's working fine by following this process :
Open XCode and make a release of the app
upload ...