wzieba / Firebase-Distribution-Github-Action

This action uploads artifacts (.apk or .ipa) to Firebase App Distribution.
MIT License
373 stars 77 forks source link

File app/build/outputs/apk/debug/app-debug.apk does not exist: verify that file points to a binary #92

Closed trancongdung12 closed 1 year ago

trancongdung12 commented 1 year ago

image

How I can find the folder to save apk file

trancongdung12 commented 1 year ago

This is fixed by me? to add android like that file: android/app/build/outputs/apk/debug/app-debug.apk

anup350 commented 1 year ago

I'm getting this error even if provide absolute path to apk file. @trancongdung12 Could you please share the steps that you used fix the issue?

${GITHUB_WORKSPACE}/app/build/outputs/apk/release/app-release-unsigned.apk

LuizCristino commented 1 year ago

I'm getting this error even if provide absolute path to apk file. @trancongdung12 Could you please share the steps that you used fix the issue?

${GITHUB_WORKSPACE}/app/build/outputs/apk/release/app-release-unsigned.apk

@anup350 If you are building with react native your path is wrong, you forgot to add /android/ between {GITHUB_WORKSPACE} and app.

The correct path is ${GITHUB_WORKSPACE}/android/app/build/outputs/apk/release/app-release-unsigned.apk