You are here: Forum Home → ANT Developers Forums → ANT in Mobile Phones → Thread
AntPluginDevice(1150): BBC30600: Remote Exception sending client message: 10002(appears several times)
blackramlabs.com
call recorder, however after a minute or so the phone reboots. Can u help me?i have this problem with another app -
Hi Martin,
Firstly: I am guessing this is due to an exception in your code, but I am not completely surprised you can crash the phone.
Secondly: While I haven't seen this crash (as it's likely from an exception in your code...), I have seen issues where the services can be locked up when making API calls from within its own callbacks, because the calls out of the APIs are performed directly from the service's binder threads.
What does this mean? I would recommend wrapping every event/call from the ANT+ APIs in an immediate post to a worker thread (or Handler/queue), and let the API call return instantly.
Then for your case, you can look for your worker threads crashing, or wrap the logic in try/catch blocks, and see where you are causing an exception.
-Rohan