Reputation: 26986
I'm running: meteor build ~/deployment --server=my-app.meteor.com
But when I check ~/deployment/android
it contains only project
and README
. Where has the APK gone?
Upvotes: 1
Views: 192
Reputation: 26986
Eventually I found it somewhere in the folder tree. It wasn't copied automatically because there are two files, because of my use of CrossWalk.
See elaborations here: https://github.com/meteor/meteor/issues/5274
And how to upload two apks to play store:
Command to copy one of the files:
cp my_build_dir/android/project/build/outputs/apk/android-armv7-release-unsigned.apk unaligned.apk
Upvotes: 3