xiaoyaoyou1212 / BLE

✨Android BLE基础操作框架,基于回调,操作简单。包含扫描、多连接、广播包解析、服务读写及通知等功能。
http://www.huwei.tech/
Apache License 2.0
1.38k stars 364 forks source link

建议demo里面增加判断是否打开设置--位置,如果没打开gps,即使获取了高精度定位权限结果还是不能扫描,或者加载fq里 #94

Open lsqbeyond opened 2 years ago

lsqbeyond commented 2 years ago

private boolean checkGPSIsOpen() { LocationManager locationManager = (LocationManager) this.getSystemService(Context.LOCATION_SERVICE); if (locationManager == null) return false; return locationManager.isProviderEnabled(android.location.LocationManager.GPS_PROVIDER); }