Skip to content Skip to sidebar Skip to footer

Connect Micromax A70 Android Phone To Eclipse

I recently bought a new Micromax A70 & i'm trying to connect with my eclipse for android development to run my app directly by downloading the corresponding driver from this li

Solution 1:

I am using micromax canvas HD A116. I have no problem for USB debugging with UBUNTU.

Follow below given instructions:

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.

Solution 2:

I got a micromax Canvas HD just for testing my android apps. I am using ubuntu 13.04.

This is what i did :

1) Settings > Developer options > check USB debugging

2) connect the device

3) SELECT media device(MTP) in The connect as dialogue

Connect As

My /etc/udev/rules.d/51-android.rules file :

SUBSYSTEM=="usb", ATTR{idVendor}=="04e8", MODE="0666", GROUP="plugdev"
  • the vendor id i'm using is of samsung but i tried a few others and they all seemed to work.
  • the important thing was to have this line in the file because without it the device would not be recognized.

Solution 3:

I am using Micromax A70, at begenning i was frustrated same like you.

but there is a solution for your problem;

Windows: after installing the micromax A70 usb drivers (can be found in net or micromax service centers), in stall 91 PC suite (Chinese software for andoid sdk) and run the software which will then can be determined by eclipse and ADB commangs of android SDK.

LINUX:

  1. Download android SDK (I compiled SDK from source for adb and fastboot) place all the bin files and executables and other java class librarirs in their respective system folders. (/usr/bin; /usr/lib ..etc)
  2. create UDEV rules for you device as suggested in android documentation
  3. and then sudo adb devices (you can see your devices listing)

Solution 4:

After a long research I found that, there's no digitally signed driver for Micromax Driver & Also the there's no official driver on Micromax official website.

So people don't buy Micromax mobiles for android development. And they are not at all stable.

Solution 5:

After a long search, finally I made my Micromax A57 to connect with eclipse and made it to suit for development.

  1. Installed Moborobo (All in one Android smart phone management tool).

  2. Perform stop -server / start -server using ADB.

  3. Reboot the device.

    4.Restart the eclipse. Device got detected.(Eclipse - list of adb devices)

Post a Comment for "Connect Micromax A70 Android Phone To Eclipse"