Skip to content

Instantly share code, notes, and snippets.

@MacoChave
Last active July 13, 2019 21:47
Show Gist options
  • Save MacoChave/a6b4b974735a77668498d15ebbde1f1d to your computer and use it in GitHub Desktop.
Save MacoChave/a6b4b974735a77668498d15ebbde1f1d to your computer and use it in GitHub Desktop.
Generar apk con Cordova
# INSTALAR CORDOVA
sudo npm install -g cordova
# CREAR UNA APP
cordova create MyApp
# DEFINIR UNA PLATAFORMA
cordova platform add ( browser | android )
# COPIAR COMPILADOS DE LA APP WEB
# DE ANGULAR
# COPIAR /dist DENTRO DE www DE CORDOVA
ng build --configuration=production
# COMPILAR APK
cordova build android --debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment