Created
August 9, 2018 03:52
-
-
Save gitspilo/bd2fdf0a2bb5fcc9331e1fc45bf9d8bf to your computer and use it in GitHub Desktop.
meteor_build_app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make | |
sudo apt-get update | |
sudo apt-get install ubuntu-make | |
umake android | |
# download android sdk | |
wget http://dl.google.com/android/android-sdk_r24.2-linux.tgz | |
tar -xvf android-sdk_r24.2-linux.tgz | |
cd android-sdk-linux/tools | |
# install all sdk packages | |
./android update sdk --no-ui | |
echo 2 > /proc/sys/vm/drop_caches | |
meteor build <build-output-directory> --server <host>:<port> | |
meteor build /root/mobiApp/app4 --server http://healthweb.herokuapp.com:80 | |
************************************************************ | |
# install openjdk | |
sudo apt-get install openjdk-7-jdk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment