Open GoogleCodeExporter opened 8 years ago
The sample chat app provided on backport-android-bluetooth source shows the
same problem.
11-07 06:25:30.870: INFO/ActivityManager(1063): Starting activity: Intent {
comp={backport.android.bluetooth/com.example.bluetooth.BluetoothChat} }
11-07 06:25:30.940: ERROR/BluetoothChat(2137): +++ ON CREATE +++
11-07 06:25:31.190: ERROR/BluetoothChat(2137): ++ ON START ++
11-07 06:25:31.190: DEBUG/BluetoothChat(2137): setupChat()
11-07 06:25:31.200: ERROR/BluetoothChat(2137): + ON RESUME +
11-07 06:25:31.200: DEBUG/BluetoothChatService(2137): start
11-07 06:25:31.210: ERROR/BLZ_WRAPPER(2137): btl_if_socket : blz wrapper not
initialized
11-07 06:25:31.220: INFO/ActivityManager(1063): Process
backport.android.bluetooth (pid 2137) has died.
11-07 06:25:31.230: INFO/WindowManager(1063): WIN DEATH: Window{433be5a0
backport.android.bluetooth/com.example.bluetooth.MainActivity paused=false}
11-07 06:25:31.250: DEBUG/Zygote(1013): Process 2137 exited cleanly (1)
11-07 06:25:31.260: INFO/ActivityManager(1063): Start proc
backport.android.bluetooth for activity
backport.android.bluetooth/com.example.bluetooth.MainActivity: pid=2148
uid=10043 gids={3002, 3001}
Original comment by nicolas....@gmail.com
on 7 Nov 2010 at 6:27
I should add that I've debugged this and I'm pretty sure the problem is when
Rfcommsocket happens when it calls createNative(). Considering the
"BLZ_WRAPPER" log, it's probably calling the native code correctly, but
something wrong happens.
RfcommSocket.java
Line 155:
/**
* Creates a socket. You need to call this method before performing any
* other operation on a socket.
*
* @return FileDescriptor for the data stream.
* @throws IOException
* @see #destroy()
*/
public FileDescriptor create() throws IOException {
if (mFd == null) {
mFd = createNative();
}
if (mFd == null) {
throw new IOException("socket not created");
}
return mFd;
}
Original comment by nicolas....@gmail.com
on 7 Nov 2010 at 6:40
Original issue reported on code.google.com by
nicolas....@gmail.com
on 7 Nov 2010 at 6:17