Generate Android .apk from Meteor project
525
docker pull rikyperdana/meteor-android
docker run -dit -p 3000:3000 --name anyName rikyperdana/meteor-android
docker attach anyName
su meteor #password is meteor
git clone https://github.com/yourName/yourProject
cd yourProject
meteor npm install --save
meteor add-platform android
meteor run -p 3000 #and then Ctrl+C to stop it
mkdir ~/output
meteor build ~/output --server=http://yourProductionAddress:thePort
#and you'll have your release-unsigned.apk in output folder
If by any case that your meteor project requires other version of build-tools, platform-tools Use ~/android/tools/bin/sdkmanager to add, update, or delete packages I also included my dummy project (bappeda) to show you that it worked, you can delete it anyway
Content type
Image
Digest
Size
1.6 GB
Last updated
over 8 years ago
docker pull rikyperdana/meteor-android