How do I download my android application to device to run again when I'm not running from Eclipse?
Currently it runs on the tablet, but once finished it isn't on the device.
How do I download my android application to device to run again when I'm not running from Eclipse?
Currently it runs on the tablet, but once finished it isn't on the device.
So when you start the app to run into your device not in the emulator than the app would be installed like you install from other sources or playstore and when you unplug your phone or tablet the app is installed normal in your rom !
Ps: in your mainiafest check this :
android:debuggable
Whether or not the application can be debugged, even when running on a device in user mode — "true" if it can be, and "false" if not. The default value is "false".
When you run the project on the emulator, the APK file is generated in the bin directory. Keep in mind that just building the project (and not running it) will not output the APK file into the bin directory.
Get the apk from Eclipse bin folder and install the app from there. Also can I recommend you to switch to Android Studio?