有没有一种方法可以让我们在 Android 应用程序的 "Extended Mode" (LE CODED PHY) 中开始 BLE 广告?

Is there a way that we can start BLE advertising in "Extended Mode" (LE CODED PHY) in Android App?

我在我的 android 应用程序上以正常模式做 BLE 广告。现在,我需要在 extended mode (LE CODED PHY) 做广告。有人可以帮我解决这个问题吗?

我找到了解决方案。

所以基本上,我们可以在投放广告之前更改它。

我们可以使用 AdvertisingSetParameters。就像下面的例子:

AdvertisingSetParameters advertisingSetParameters = new AdvertisingSetParameters.Builder()
  .setLegacyMode(false).setPrimaryPhy(PHY_LE_CODED).setPrimaryPhy(PHY_LE_CODED).build();