So in my further attempts to regularly poll the RSSI value of a connected device, I used the bluetooth 2.1.1 snapshot jar (The specific API's are here as follows RemoteDevice and RemoteDeviceHelper

Seeing as the constructor for RemoteDevice is protected, I created my own class

import javax.bluetooth.RemoteDevice;

public class MyRemoteDevice extends RemoteDevice {

    public MyRemoteDevice(String addr) {
    super(addr);
  }
}

Furthermore, simply importing the entire jar file was giving me an error in that Eclipse was complaining about a "contains native libraries that will not run on the device." I fixed that by opening the jar files with WinRaR and deleting "libbluecove.jnilib", then adding the jar to the build path of the project.

However upon using MyRemoteDevice's constructor, the app crashes. aLogCat has the following error log

E/AndroidRuntime( 6969): Uncaught handler: thread main exiting due to uncaught exception

E/AndroidRuntime( 6969): java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=Intent { (has extras) }} to activity {com.example.android.BluetoothChat/com.example.android.BluetoothChat.BluetoothChat}: java.lang.RuntimeException: Can't initialize bluetooth support

E/AndroidRuntime( 6969): at android.app.ActivityThread.deliverResults(ActivityThread.java:3329)


E/AndroidRuntime( 6969):    at android.app.ActivityThread.handleSendResult(ActivityThread.java:3371)
E/AndroidRuntime( 6969):    at android.app.ActivityThread.access$2700(ActivityThread.java:119)
E/AndroidRuntime( 6969):    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1893)
E/AndroidRuntime( 6969):    at android.os.Handler.dispatchMessage(Handler.java:99)

E/AndroidRuntime( 6969):    at android.os.Looper.loop(Looper.java:123)

E/AndroidRuntime( 6969):    at android.app.ActivityThread.main(ActivityThread.java:4363)

E/AndroidRuntime( 6969):    at java.lang.reflect.Method.invokeNative(Native Method)

E/AndroidRuntime( 6969):    at java.lang.reflect.Method.invoke(Method.java:521)

E/AndroidRuntime( 6969):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:862)

E/AndroidRuntime( 6969):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:620)

E/AndroidRuntime( 6969):    at dalvik.system.NativeStart.main(Native Method)

E/AndroidRuntime( 6969): Caused by: java.lang.RuntimeException: Can't initialize bluetooth support

E/AndroidRuntime( 6969):    at javax.bluetooth.RemoteDevice.<init>(RemoteDevice.java:92)

E/AndroidRuntime( 6969):    at com.example.android.BluetoothChat.MyRemoteDevice.<init>(MyRemoteDevice.java:8)

E/AndroidRuntime( 6969):    at com.example.android.BluetoothChat.BluetoothChat.onActivityResult(BluetoothChat.java:364)

E/AndroidRuntime( 6969):    at android.app.Activity.dispatchActivityResult(Activity.java:3837)

E/AndroidRuntime( 6969):    at android.app.ActivityThread.deliverResults(ActivityThread.java:3325)

E/AndroidRuntime( 6969):    ... 11 more

E/AndroidRuntime( 6969): Caused by: javax.bluetooth.BluetoothStateException: BlueCove com.intel.bluetooth.BluetoothStackBlueZ|com.intel.bluetooth.BluetoothStackBlueZDBus not available

E/AndroidRuntime( 6969):    at com.intel.bluetooth.BlueCoveImpl.loadStackClass(BlueCoveImpl.java:356)

E/AndroidRuntime( 6969):    at com.intel.bluetooth.BlueCoveImpl.detectStack(BlueCoveImpl.java:447)

E/AndroidRuntime( 6969):    at com.intel.bluetooth.BlueCoveImpl.access$500(BlueCoveImpl.java:69)

E/AndroidRuntime( 6969):    at com.intel.bluetooth.BlueCoveImpl$1.run(BlueCoveImpl.java:1044)

E/AndroidRuntime( 6969):    at java.security.AccessController.doPrivilegedImpl(AccessController.java:205)

E/AndroidRuntime( 6969):    at java.security.AccessController.doPrivileged(AccessController.java:178)

E/AndroidRuntime( 6969):    at com.intel.bluetooth.BlueCoveImpl.detectStackPrivileged(BlueCoveImpl.java:1042)

E/AndroidRuntime( 6969):    at com.intel.bluetooth.BlueCoveImpl.getBluetoothStack(BlueCoveImpl.java:1035)

E/AndroidRuntime( 6969):    at javax.bluetooth.LocalDevice.getLocalDeviceInstance(LocalDevice.java:75)

E/AndroidRuntime( 6969):    at javax.bluetooth.LocalDevice.getLocalDevice(LocalDevice.java:95)

E/AndroidRuntime( 6969):    at javax.bluetooth.RemoteDevice.<init>(RemoteDevice.java:88)

E/AndroidRuntime( 6969):    ... 15 more

Might this have anything to do with the fact that I deleted "libbluecove.jnilib"? Or is BlueCove not compatible with my Samsung Galaxy S, my 2.1 android version?

Any insight into my problem would be very much appreciated. Thank you.

link|improve this question

Can anyone help? I have the same problem – Cris Aug 28 '11 at 6:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.