I’d like to install my app on Motorola Android as a testing. how to? Please share me any step by step link
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Copied from http://developer.android.com/guide/developing/eclipse-adt.html and http://developer.android.com/guide/developing/device.html#setting-up assuming you are using the eclipse plugin. Might be better just to read them yourself.
In Eclipse, you can do this from the Application tab when viewing the Manifest (on the right side, set Debuggable to true). Otherwise, in the AndroidManifest.xml file, add android:debuggable=”true” to the element.
On the device, go to the home screen, press MENU, select Applications > Development, then enable USB debugging.
Once set up and your device is connected via USB, install your application on the device by selecting Run > Run (or Run > Debug) from the Eclipse menu bar.
Also see http://developer.android.com/guide/developing/device.html#setting-up
You can verify that your device is connected by executing adb devices from your SDK tools/ directory. If connected, you’ll see the device name listed as a “device.”
If using Eclipse, run or debug as usual. You will be presented with a Device Chooser dialog that lists the available emulator(s) and connected device(s). Select the device upon which you want to install and run the application.