Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error: "This app is not published in the Google Play console. #137

Open
Ahmed-Hmila1 opened this issue Jun 30, 2024 · 1 comment
Open

Error: "This app is not published in the Google Play console. #137

Ahmed-Hmila1 opened this issue Jun 30, 2024 · 1 comment

Comments

@Ahmed-Hmila1
Copy link

Ahmed-Hmila1 commented Jun 30, 2024

when I use this workflow to upload aab to firabase app destrubtion

deploy:
needs: build-android
runs-on: ubuntu-latest

steps:
  - name: Checkout code
    uses: actions/checkout@v1

  - name: set up JDK 1.8
    uses: actions/setup-java@v1
    with:
      java-version: 1.8

  - name: Download Android app bundle artifact
    uses: actions/download-artifact@v2
    with:
      name: android-app-bundle
      path: android/app/build/outputs/bundle/release/

  - name: upload artifact to Firebase App Distribution
    uses: wzieba/Firebase-Distribution-Github-Action@v1
    with:
      appId: ${{ secrets.FIREBASE_APP_ID }}
      serviceCredentialsFileContent: ${{ secrets.CREDENTIAL_FILE_CONTENT }}
      groups: testers
      file: android/app/build/outputs/bundle/release/app-release.aab
      internalDistribution: true
    env:
      DEBUG: true

I'm encountering the following issue: Error: "This app is not published in the Google Play console.

@Ahmed-Hmila1 Ahmed-Hmila1 changed the title Error: failed to determine AAB info. HTTP Error: 400, Request contains an invalid argument. Error: "This app is not published in the Google Play console. Jul 4, 2024
@phillipjacobs
Copy link

phillipjacobs commented Dec 20, 2024

Hey Ahmed, if you're trying to push your QA build to Firebase App Distribution - I just ran into the same issue.
I just saw a comment that this issue is caused due to us pushing the .aab. Aparently Firebase will require a Play Store app if it's an aab. Try to build and push an .apk instead when you build for QA/Internal.

Here's the comment i'm referring to: https://github.com/orgs/codemagic-ci-cd/discussions/2164#discussioncomment-7453566

Looking at Firebase Docs, the comment seems true:

APK: https://firebase.google.com/docs/app-distribution/android/distribute-console?apptype=apk#before_you_begin
AAB: https://firebase.google.com/docs/app-distribution/android/distribute-console?apptype=aab#before_you_begin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants