文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android 蓝牙权限(更新到 Android 12)

2023-09-08 05:26

关注

Android 蓝牙权限

Android 11 及以下目标版本

https://developer.android.com/guide/topics/connectivity/bluetooth/permissions

  1. BLUETOOTH:访问蓝牙适配器的权限,用于执行蓝牙操作。

  2. BLUETOOTH_ADMIN:管理蓝牙适配器的权限,包括启用/禁用蓝牙、扫描设备和进行配对等操作。

  3. ACCESS_FINE_LOCATIONACCESS_COARSE_LOCATION:访问设备位置的权限。在 Android 6.0 及以上版本中,需要获取位置权限才能扫描附近的蓝牙设备。

  4. ACCESS_BACKGROUND_LOCATION:在后台访问设备位置的权限。该权限通常在后台扫描蓝牙设备时使用。

  5. 需要手机开启定位服务

    public boolean notNeedGps(Activity activity) {        if (NullUtils.surviveActivity(activity)) {            LocationManager manager = (LocationManager) activity.getSystemService(LOCATION_SERVICE);            boolean isGPS = false;            if (manager != null) {                isGPS = manager.isProviderEnabled(LocationManager.GPS_PROVIDER);            }            if (!isGPS) {                ConfirmDialog.Builder builder = new ConfirmDialog.Builder(activity);                builder.setTitle(activity.getString(R.string.tip))                .setPositiveText("启用")                .setContent("MeFengon需要启用手机定位服务\n否则手机导航和定位等功能将不可用")                .setOnConfirmDialogClickListener(new ConfirmDialog.OnConfirmDialogClickListener() {                    @Override                    public void onPositiveClick() {                        Intent intent = new Intent();                        intent.setAction(Settings.ACTION_LOCATION_SOURCE_SETTINGS);                        activity.startActivity(intent);                    }                    @Override                    public void onNegativeClick() {                    }                });                builder.build().show();            }            return isGPS;        } else {            return true;        }    }

Android 12 中的新蓝牙权限

https://developer.android.google.cn/about/versions/12/features/bluetooth-permissions?hl=zh-cn

  1. 如果您的应用查找蓝牙设备(如蓝牙低功耗 (BLE) 外围设备),请向应用的清单中添加 BLUETOOTH_SCAN 权限。
  2. 如果您的应用使当前设备可被其他蓝牙设备检测到,请向应用的清单中添加 BLUETOOTH_ADVERTISE 权限。
  3. 如果您的应用与已配对的蓝牙设备通信,请向应用的清单中添加 BLUETOOTH_CONNECT 权限。
  4. 对于旧版蓝牙相关的权限声明,请将 android:maxSdkVersion 设为 30。此应用兼容性步骤有助于系统仅向您的应用授予在搭载 Android 12 的设备上安装时所需的蓝牙权限。
<manifest>    <!-- Request legacy Bluetooth permissions on older devices. -->    <uses-permission android:name="android.permission.BLUETOOTH"                     android:maxSdkVersion="30" />    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"                     android:maxSdkVersion="30" />    <!-- Needed only if your app looks for Bluetooth devices.         You must add an attribute to this permission, or declare the         ACCESS_FINE_LOCATION permission, depending on the results when you         check location usage in your app. -->    <uses-permission android:name="android.permission.BLUETOOTH_SCAN" />    <!-- Needed only if your app makes the device discoverable to Bluetooth         devices. -->    <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" />    <!-- Needed only if your app communicates with already-paired Bluetooth         devices. -->    <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />    ...</manifest>

应用不推导物理位置

https://developer.android.google.cn/about/versions/12/features/bluetooth-permissions?hl=zh-cn#not-derive-physical-location

<manifest>    <!-- Request legacy Bluetooth permissions on older devices. -->    <uses-permission android:name="android.permission.BLUETOOTH"                     android:maxSdkVersion="30" />    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"                     android:maxSdkVersion="30" />    <!-- Include "neverForLocation" only if you can strongly assert that         your app never derives physical location from Bluetooth scan results. -->    <uses-permission android:name="android.permission.BLUETOOTH_SCAN"                     android:usesPermissionFlags="neverForLocation" />    <uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" />    <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />    <!-- Not needed if you can strongly assert that your app never derives         physical location from Bluetooth scan results and doesn't need location         access for any other purpose. -->    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />    ...</manifest>

指明使用的蓝牙功能

https://developer.android.com/guide/topics/connectivity/bluetooth/permissions#features

经典蓝牙

<uses-feature android:name="android.hardware.bluetooth" android:required="true"/>

低功耗蓝牙

<uses-feature android:name="android.hardware.bluetooth_le" android:required="true"/>

检查功能可用性

// Use this check to determine whether Bluetooth classic is supported on the device.// Then you can selectively disable BLE-related features.if (!getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH)) {    Toast.makeText(this, R.string.bluetooth_not_supported, Toast.LENGTH_SHORT).show();    finish();}// Use this check to determine whether BLE is supported on the device. Then// you can selectively disable BLE-related features.if (!getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH_LE)) {    Toast.makeText(this, R.string.ble_not_supported, Toast.LENGTH_SHORT).show();    finish();}

来源地址:https://blog.csdn.net/weixin_35691921/article/details/131212145

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯