Hi.
We have an application that extracts manufacturer data from the advertising data parameter for didDiscoverPeripheral delegate method.
Under iOS 9 the data retrieved by extracting the object associated with CBAdvertisementDataManufacturerDataKey has more bytes than the same data retrieved under iOS 7 and iOS 8.
For example:
iOS 9 manufacturing data: @"\x01\0\x01\x02\0SB106492\x01"
iOS 8 manufacturing data: @"\x02\0SB106492\x01"
Is this expected?
What is the correct way to extract manufacturer data from the advertising packet given the differences between iOS 8 and 9?
Thanks