I have a htc wildfire phone and i have developed one application in android 2.1 using eclipse IDE now its time to run it on the actual device.
so far i have done following.
apart form these when i operate something in my phone i can see the log information in my eclips LogCat section.
Moreover when i open Android SDK and AVD Manager all i can see the Virtual devices listed ; there is not actual physical device is shown over here.
I am using Windows XP operating system and HTC Wildfire phone.
The physical device will not be listed in the AVD manager. I'm not sure how things work in Eclipse but from the command line you can run the following command to install an APK on your phone:
adb -d install -r yourapp.apk
The -d
specifies that you want to install on a device rather than the emulator. The -r
just means that the app will be reinstalled if it already exists.