Guardar una aplicación Android en tu movil

Una vez ya hemos compilado y verificado que la aplicación funciona seguiremos los siguientes pasos:

  • Connect the device to the computer with USB.
  • Ensure the device is not locked (ie. timed out in the UI). I have to keep unlocking it while I'm working.
  • Wait for Windows to recognise the USB device, and when the autoplay menu comes up select Open device to view files. It should open up the file system in the device, in Explorer.
  • In Explorer go to the Eclipse workspace and find the apk file from the build (eg. My First App.apk)
  • Copy the apk file to the Downloads directory on the device
  • On the device, use the My Files app to open the Downloads directory.
  • Click the downloaded file (My First App.apk) and Android offers to install it
  • Select install
  • The app is now in the installed Apps. Run it.

También podemos enviarnos el fichero apk por email, descargarlo y ejecutarlo.

Comentarios

raikol ha dicho que…
a ver loco :P

se puede instalar directamente sin eclipse con adb

adb install ruta_a_pakete.apk


para que funcione tienes que tener el driver adb instalado.
Janfri ha dicho que…
Buenas,
Efectivamente, lo de eclipse era solo para localizar el archivo de instalación dentro de la carpeta bin del proyecto.
Una vez copiado el .apk en tu movil lo puedes instalar con adb o con una aplicación como AppInstaller
Saludos