Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is the Android 2.0 emulator Bluetooth enabled?

Tags:

android

I want to know whether Android 2.0 emulator is Bluetooth enabled.If it is not enabled, then how can i test my bluetooth application.Please any body knows the solution help me.

like image 309
Rajapandian Avatar asked Dec 09 '22 17:12

Rajapandian


2 Answers

Nope, you'll have to buy a real device.

like image 177
Mirko N. Avatar answered Mar 10 '23 05:03

Mirko N.


You can install the image from http://www.android-x86.org/ into a virtual machine (e.g. VMWare), find out it's IP address, connect manually using

adb connect <IP of VM>

And then launch your project from Eclipse by setting a "Manual" deployment target in your Debug/Run configuration. Bluetooth works in this Virtual Machine at least on my Macbook and it's reported to work with a couple of other bluetooth chipsets.

like image 41
drott Avatar answered Mar 10 '23 05:03

drott