-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Advertising BLE service data from macOS #91
Comments
Ah, I see. It looks like the /**
* Starts advertising service data in a way that is supported by CoreBluetooth.
*
* Since CoreBluetooth doesn't support setting the @c CBAdvertisementDataServiceDataKey key, the
* service list is advertised using @c CBAdvertisementDataServiceUUIDsKey and the associated data is
* advertised using @c CBAdvertisementDataLocalNameKey. Since @c CBAdvertisementDataLocalNameKey
* does not support binary data, the value is base64 encoded and truncated if the resulting value is
* longer than 22 bytes. This also means we can only support advertising a single service.
*
* @param serviceData A dictionary that contains service-specific advertisement data.
* @param completionHandler Called on a private queue with @c nil if successfully started
* advertising or an error if one has occured.
*/
- (void)startAdvertisingData:(NSDictionary<CBUUID *, NSData *> *)serviceData
completionHandler:(nullable GNCStartAdvertisingCompletionHandler)completionHandler; // Apple devices don't support advertising service data, so Apple devices advertise a base64
// encoded local name, while other devices advertise service data. Here we attempt to reconstruct
// service data by decoding the local name. If successful, this is possibly a Nearby advertisement
// on an Apple device.
NSString *localName = advertisementData[CBAdvertisementDataLocalNameKey];
// ...
// A Nearby Apple advertisement should only have a single service, so simply grab the first one if
// it exists.
NSArray<CBUUID *> *serviceUUIDs = advertisementData[CBAdvertisementDataServiceUUIDsKey]; // Maps service UUIDs to their service data.
//
// For each platform should follow to set the service UUID(key) and service
// data(value):
//
// iOS : 16 bit service UUID (type=0x03) + LocalName data (type=0x08)
// Windows: Service data (type=0x16)
// Android: 16 bit service UUID (type=0x03) + Service data (type=0x16)
absl::flat_hash_map<Uuid, nearby::ByteArray> service_data; Can you see if this method works instead? |
It looks like iOS/macOS BLE advertisement was only added to the |
Okay then. Maybe they're preparing to ship their (inevitably worse lol) Nearby Share app for macOS. Another thing to keep in mind is that |
In case someone wants to look at it themselves, the bulk of code dealing with the reception of these BLE advertisements is in |
Would using private apis be off the menu? The BluetoothHCILESetAdvertisingParameters |
I'm totally fine with using private APIs, I'll test this one, although I don't have my hopes up |
Oh these APIs are the ones I've already tested and they didn't work on modern macOS versions |
I'm fairly sure you should be able to do this on macOS (not iOS perhaps?). Here's an example. Specifically,
CBAdvertisementDataServiceDataKey
should be what you need.The text was updated successfully, but these errors were encountered: