Make Bluetooth on Android 2.1 discoverable indefinitely

Posted by kanov-baekonfat on Stack Overflow See other posts from Stack Overflow or by kanov-baekonfat
Published on 2010-07-06T22:12:19Z Indexed on 2010/12/26 2:54 UTC
Read the original article Hit count: 500

Filed under:
|
|
|

Hello all. I'm working on a research project which involves Bluetooth and the Android OS. I need to make Bluetooth discoverable indefinitely in order for the project to continue.

The Problem:

  • Android limits discoverability to 300 seconds.
  • I cannot ask the user every 300 seconds to turn discoverability back on as my application is designed to run in the background without disturbing the user.
  • As far as I am aware, there is no way to increase the time though Android's GUI. Some sources have called this a safety feature, others have called this a bug. There may be a bit of truth in both...

What I'm Trying / Have Tried:

  • I'm trying to edit a stable release of cyanogenmod to turn the discoverability timer off (it's possible; there's a configuration file that needs to have a single number changed). This isn't working because I'm having verification problems with the resulting package.
  • During the past week, I downloaded the cyanogenmod source code, changed a relevant class in the hope that it would make Bluetooth discoverable indefinitely, and tried to recompile. This did not work because (a) the repo is frequently changed, leading to an unstable code base which fails to compile (OR, it could be that I'm using it incorrectly; just because it looked like it was the code's fault in many instances doesn't mean I should blame it for all the problems I encountered!) and (b) the repo decides to periodically "ignore" me (but not always, as I have gotten the code base before!), replying to my synchronization/connection attempts with:

    fatal: The remote end hung up unexpectedly

As you might imagine, the above two issues are problematic and very frustrating to deal with.
More Info:

  • I'm running Android 2.1 via cyanogenmod (v5 I believe). This means the phone is also rooted.
  • I have a developer phone, which means that the bootloader is unlocked.
  • My phone is an HTC Magic (32B).

The Big Question:

  • How can I make Bluetooth indefinitely discoverable on Android?

Thanks for your time and input. I feel like I'm spinning my tires on this issue and I'd like to move past it.

© Stack Overflow or respective owner

Related posts about android

Related posts about bluetooth