Uri
Uri

Reputation: 26986

Since meteor 1.2 after building APK is missing

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

Answers (1)

Uri
Uri

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:

https://software.intel.com/sites/default/files/managed/9a/72/Intel_Walkthrough_GP-Multiple_APK_Submissions.pdf

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

Related Questions