Where is my apk file?

I get a BUILD SUCCESSFUL message after executing:
meteor build …/mew --server=https://masseducationweapon.com

BUILD SUCCESSFUL in 1m 37s
44 actionable tasks: 44 executed

Where my apk file is supposed to be there is a .tar.gz file, is that file my .apk?
Should change the extension to .apk?

Thanks

for example if you use following command

meteor build ./.androidbuild --server=yourserver

Note make sure you add

jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 ./.androidbuild/android/project/build/outputs/apk/release/android-release-unsigned.apk yourappname

(absolute path of)/zipalign 4 ./.androidbuild/android/project/build/outputs/apk/release/android-release-unsigned.apk ./.androidbuild/yourappname.apk

you should see apk in ./.androidbuild folder

2 Likes

Thanks a lot,
What is the 4 in the zipalign command?
Also please help me with this [SOLVED] Error while trying to generate android apk file if you know the answer.

Thanks again.

Meteor documentation link for mobile

Please refer above link