将micromax A70安卓手机连接到eclipse

Jam*_*ttu 2 eclipse android

我最近买了一个新的Micromax A70&我试图连接我的eclipse for android开发直接运行我的应用程序从这个链接下载相应的驱动程序并保存在以下目录中

D:\android-sdk_r06-windows\android-sdk-windows\extras\google\micromax_usb_driver
Run Code Online (Sandbox Code Playgroud)

我也按照这个链接中的步骤操作.但它还没有显示在我日食的装置中.

小智 6

我正在使用micromax canvas HD A116.使用UBUNTU进行USB调试没问题.

按照以下给出的说明:

1) Go to Settings  > Developer options > check USB debugging in phone.

2) Connect the device.

3) Select media device(MTP) in The connect as dialogue.

4) Open terminal in Ubuntu(ctrl+alt+t) and type 'lsusb'.

5) Micromax will be connected as HTC and vendor id will 0bb4.

6) In terminal, login as root(sudo su) and type password.

7) Create a file: gedit /etc/udev/rules.d/51-android.rules

8) In file, type: SUBSYSTEM=="usb", ATTR{idVendor}=="0bb4", MODE="0666", GROUP="plugdev"

9) Save file and close it.

10) Now, execute that file: chmod a+r /etc/udev/rules.d/51-android.rules

11) Move to sdk/platform-tools: cd ~/sdk/platform-tools/ (specify the path where eclipse is present, before sdk, replace ~).

12) Type: a) adb kill-server(if its already running)
          b) adb start-server
          c) adb devices
13) Device come in list with a code and device like: 0000123355647 device

14) Now start eclipse and run your application, that device will show up.
Run Code Online (Sandbox Code Playgroud)