白名单隐式广播接收器不起作用

问题描述

我已经在清单中注册一个隐式广播接收器,以便在连接或断开蓝牙耳机时得到通知

    <uses-permission android:name="android.permission.BLUetoOTH" />

        <receiver
            android:name=".receivers.BluetoothbroadcastReceiver"
            android:enabled="true"
            android:exported="true">
            <intent-filter>
                <action android:name="android.bluetooth.device.action.ACL_CONNECTED" />
                <action android:name="android.bluetooth.device.action.ACL_disCONNECTED" />
                <action android:name="android.bluetooth.headset.profile.action.CONNECTION_STATE_CHANGED" />
                <action android:name="android.bluetooth.a2dp.profile.action.CONNECTION_STATE_CHANGED" />
            </intent-filter>
        </receiver>

我知道从Android O开始,我们有限制来声明已声明的接收者。 但是,很少有隐式接收者可以免除这种限制。 List can be found here

由于某种原因,当我的应用未运行时(该应用在后台/前景中运行),我的应用未收到广播。 存在类似的问题here,但没有可用的解决方案。

此外,我不想创建一个始终保持运行状态以使广播接收器正常工作的后台服务。

我的目的是在连接蓝牙设备/耳机时启动前台服务。

我的广播接收器

public class BluetoothbroadcastReceiver extends broadcastReceiver {

    @Override
    public void onReceive(Context context,Intent eventIntent) {
        Log.e("My broadcast receiver","Received broadcast...");
        String action = eventIntent.getAction();
        if (BluetoothDevice.ACTION_ACL_CONNECTED.equals(action)) {
            Log.e("My broadcast receiver","Received broadcast for: Bluetooth connected");
            BluetoothDevice bluetoothDevice = eventIntent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
            if (bluetoothDevice == null ||
                    bluetoothDevice.getBluetoothClass().getMajorDeviceClass() != BluetoothClass.Device.Major.AUdio_VIDEO)
                return;
            if (!AppSettings.isBluetoothDeviceDetectionEnabled(context)) return;
            Intent intent = new Intent(context,PMS.class);
            context.startService(intent);

        }
    }
}

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)