Una vez ya hemos compilado y verificado que la aplicación funciona seguiremos los siguientes pasos:
También podemos enviarnos el fichero apk por email, descargarlo y ejecutarlo.
- 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
se puede instalar directamente sin eclipse con adb
adb install ruta_a_pakete.apk
para que funcione tienes que tener el driver adb instalado.
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