Reputation: 11
I'm just getting started with android programming, playing with HelloWorld and Eclipse.
I'd like to know how to install my apps to my samsung Galaxy S
Upvotes: 1
Views: 159
Reputation: 49410
You can refer to this page to run your project on your device
To sum up:
First, from your phone (this is on HTC Desire anyway), go to Settings -> Applications -> Development and tick "USB debugging". (See the link above for device recognition problems)
Add android:debuggable="true"
to your Manifest.xml in the <application>
tag
From Eclipse, run your project then you will be asked to choose to run the project either to an AVD (the emulator) or the device.
Upvotes: 1