Is there a way to know the Android Bluetooth Ver?( 5 or 4.x - 4.1 or 4.2?) Currently as per
https://developer.android.com/about/versions/oreo/android-8.0-changes
Feature like Advertisement packet length ~ 60 bytes of more than usual (that is 31 bytes) or Support for LE Extended Advertising are features for Bluetooth 5.
Is checking these APIs below (for True) can guarantee that the Bluetooth 5 is supported?
Also is it possible to know the Bluetooth ( though they come in WiFI Combo) chip version?
isLe2MPhySupported()
isLeCodedPhySupported()
isLeExtendedAdvertisingSupported()
isLePeriodicAdvertisingSupported()
getLeMaximumAdvertisingDataLength() > 31 ( for Bluetooth 5)
I have read that by getting the Physical MAC of the device we can know to which Brand the chip-set is as different vendors have purchased these MACs from the Bluetooth Org?
Assist please !