Forked from allanbatista/install-phonegap-ubuntu-14.04
Last active
August 29, 2015 14:26
-
-
Save mauricionr/fe51ee61f93f6c1b844a to your computer and use it in GitHub Desktop.
Instalação phonegap ubuntu 14.04
This file contains 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
# Instalação das dependencias | |
sudo apt-get install openjdk-7-jdk | |
sudo apt-get install ant | |
# Em sistemas x64 instale | |
sudo apt-get install lib32std++ | |
# instalacao do phonegap | |
sudo npm install phonegap | |
# Baixe o sdk do android | |
Baixe no site o sdk do android referente a sua plataforma e coloque ~/android-sdk *(renomeie a pasta)* | |
# Adicao das variaveis de ambiente | |
edite o arquivo ~/.bash_profile | |
export PATH=${PATH}:$HOME/android-sdk/sdk/platform-tools | |
export PATH=${PATH}:$HOME/android-sdk/sdk/tools | |
#atualize as variaveis | |
source ~/.bash_profile | |
A partir daqui esta tudo funcionando corretamente. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment