Can a HTC advertise itself as a BLE Beacon?

后端 未结 3 1600
深忆病人
深忆病人 2020-12-10 09:17

Ive been doing some work around BLE and iBeacons. At present I\'m aware that you can turn your iPhone into an iBeacon but I have not come across any details of whether this

3条回答
  •  囚心锁ツ
    2020-12-10 09:53

    Android devices have a public APIs to transmit BLE advertisements only starting with Android 5.0. You would need to install this operating system on your HTC One to do this in a regular app. I have made an app that transmits with the intellectual property-free AltBeacon standard, and put it in the Play Store here.. Source code is available here. Again, you need Android L for this to work.

    Alternatively, Android 4.4.3 also has hidden APIs that allow transmitting BLE advertisements. Building a transmitter app against 4.4.3 has three challenges:

    1. You must manually compile a special version of the Android SDK from source to unlock the hidden APIs so you can build your app.

    2. The permissions needed to transmit in 4.4.3 require system privileges,
      So you have to root your phone to install it in as special location. This makes it impractical to distribute such an app in the Play Store.

    3. A bug in 4.4.3 limits the length of advertisements to one byte less than needed to transmit a 20 byte beacon identifier and a one byte reference tx power value. This means you have to leave off that latter field making it impossible to "range" or estimate distance to the transmitter from other devices.

提交回复
热议问题