How to connect the device to Eclipse?

2020-01-28 08:44发布

I am not able to resolve this simple issue.

I am trying to connect my device to Eclipse via USB cable.
On my PC, I have installed Eclipse and the Android SDK and running the program on the emulator is working fine.

I have downloaded and installed Samsung Kies on my PC. It shows my device if connected via USB to the PC.

But I dont know how to connect the device with the emulator.

Connect means, I want to run the Eclipse code on my device instead of emulator. I am using Samsung Galaxy Ace GT-S5830i. Please help me out to resolve this issue.

13条回答
Viruses.
2楼-- · 2020-01-28 09:21

I am assuming you don't mean connecting the device with the emulator but connecting the device to your computer so you can debug it and run applications directly from Eclipse to the device. In which case KIES by Samsung will not help you at all. What you need is the Android USB Drivers provided in the Extras tab in SDK. Sometimes the installation will bug up because you didn't run SDK manager as an administrator so make sure you do that. When all of this is done make sure your device is unconnected to your computer and then reconnect it after the drivers are installed. You should be prompted with a new device installation wizard which you must accept. Additionally, you should have debugging enabled on your device, and as an extra step you can setup launching as a manual configuration but it is not needed.

To enable device debugging

Settings -> Developer Options -> USB Debugging.

For more information visit here

BTW : If the Google USB Drivers don't work you might need to install the specific Samsung drivers which are located here

查看更多
太酷不给撩
3楼-- · 2020-01-28 09:27

I think your emulator is in Automatic. You can change that to Manual.

Try this,

Step 1

Go to Run Configuration

enter image description here

You can see three Columns Android,Target and Common.

enter image description here

Step2

Select the Target

Step 3

Choose Always prompt to pick device.Click Ok

Step 4

Now run your project you should see the emulator and your device. Select your device and click ok. enter image description here

Hope it helps.

查看更多
虎瘦雄心在
4楼-- · 2020-01-28 09:27

The android app you have created will be a .apk file, generated by eclipse, during a successful Run. Find the .apk file from the eclipse project explorer or by tracing your workspace. Copy the .apk file to your memory card (via USB or a card reader) and install it.

You should also enable the "Unknown Sources" option under "Security" of your Android device. Find APK file here![][1]

Find APK file here

查看更多
家丑人穷心不美
5楼-- · 2020-01-28 09:27

I know this is a little old, but I was having the same issue. I tried all the options of setting usb debugging (off), disconnecting, restarting phone, usb debugging (on), connecting the phone and it just wouldn't connect.

I ended up installing the latest version of Kies on my machine and added the Unified option at the end of the installer and I then the phone would connect. (Not sure i needed the unified option) but it worked for me.

查看更多
Anthone
6楼-- · 2020-01-28 09:29

If you have required options enabled on your phone (USB Debugging and Unknown Sources) you can try do this. On your computer open command console. Using cd navigate to your android sdk installation folder. Go to platform-tools. You should have there adb file. Run this

./adb kill-server

and then

./adb start-server

Then check plugged devices

./adb devices
查看更多
淡お忘
7楼-- · 2020-01-28 09:30

Comment is lack of formatting so i add an answer.

  1. Check if your computer had your phone driver. I assume that your use Windows. Open Device Manager

    • At a command prompt, in the Start Search box, or in the Run box, type the following command: mmc devmgmt.msc

    • . Other ways : check link

    If you find your phone name or ADB Interface so you got driver. Try to restart DDMS or restart your Eclipse.

  2. If you don't find your device or see something Other device with yellow question mark so try to install driver by browsing on your phone to Settings - Developer Options - Enable developer option - Enable USB debugging - Plug your phone to computer. Windows will ask you to install driver.

3, Update Google USB driver in Android SDK Manager (in Eclipse) or search Samsung Galaxy Ace GT-S5830i driver

4.Some weird case i got on some device.

  • Nexus S: disable Developer option. Restart phone. Enable again. Windows ask to install driver or you will see it in Eclipse.
  • HTC phone or Samsung : change Connectivity Option on phone to Charge only (Swipe status bar. Check notifications displayed). Some phone set it to some kind of Sync data so Windows can not recognize device.
查看更多
登录 后发表回答