我在应用程序中使用BugSense来获取错误报告。今天我得到了这个堆栈跟踪。
java.lang.SecurityException: Calling uid 10104 gave packageandroid which is owned by uid 1000
at android.os.Parcel.readException(Parcel.java:1322)
at android.os.Parcel.readException(Parcel.java:1276)
at android.bluetooth.IBluetooth$Stub$Proxy.disable(IBluetooth.java:632)
at android.bluetooth.BluetoothAdapter.disable(BluetoothAdapter.java:569)
这是我的应用程序在询问用户后尝试禁用蓝牙。如果重要,代码将在处理程序中执行。
我已设置蓝牙管理员权限:
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
那么我做错了什么?