<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.flutterbluetooth">
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application
android:label="flutterbluetooth"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
...
</activity>
<meta-data
android:name="flutterEmbedding"
android:value="2" />
</application>
</manifest>
我正试图获得蓝牙许可在Flutter。但我得到的错误,在标题。
2条答案
按热度按时间kcwpcxri1#
您可能需要声明这些新添加的附加权限沿着旧版bluettoth权限。您可以根据需要只选择特定权限。
阅读更多here。
z0qdvdin2#
您的
AndroidManifest.xml
文件中似乎缺少<uses-feature>
标记。此标记是声明您的应用使用蓝牙功能所必需的: