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.
when I use this workflow to upload aab to firabase app destrubtion
I'm encountering the following issue: Error: "This app is not published in the Google Play console.