Question

I'm trying to come up with some kind of Android environment to use for development on Mac OSX.

It's proving quite difficult ( Android emulator laggy on Mac ). On my macbook the Android emulator is so slow that it is unusable. Note, I'm trying to build a tablet app, which seems to make things worse.

So far the best performance I've found is just running the x86 port of Android via VMWare fusion.

The only problem is the darn thing keeps giving a "No network connection" message.

I don't know much about VMWare, but I'm guessing that Android wants to use the virtual wifi adaptor, but VMWare fusion only provides a virtual ethernet adapter.

The image I'm currently testing is android-x86-3.2-RC2-eeepc.iso

What can I do about this?

Was it helpful?

Solution

Boot up Android x86, hit Alt+F1 (shows the shell). Put netcfg into and you get a IP.
Open a shell on, and write adb connect <theipyougot>into.
Now you should see your Emulator via adb devices and in Eclipse.

It can be possible, to play around with the VMWare Network Adapters. On VirtualBox I use a Host-only Adapter.

Reference: http://www.android-x86.org/documents/debug-howto
If you cant get it working, take a look at virtualbox (https://www.virtualbox.org/wiki/Downloads)

OTHER TIPS

I try to use Eclipse connect to Android x86 setup in VMware several times. I found that it works well with Android-x86 2.2 for generic x86 PC. However, there are something wrong with Android-x86 3.2, it always show 127.0.0.1 when I set Bridged connection.

you can use: dhcpcd eth0; dhcpcd eth1;

  1. install android x86 on vmware
  2. run android terminal write command "ifconfig eth0"
  3. "adb connect IP address of the VM:5555" now run your app on vmware
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top