私はAndroid向けの開発が初めてで、Bluetoothを使用するAndroidアプリを開発しているときに、xmlファイルでBluetoothを使用するための権限を追加する必要があることを理解しています.
私はそうしましたが、自分のデバイスで実行すると、アプリは Bluetooth を利用しませんでした。Android の [アプリケーションの管理] を注意深く見ると、アプリに Bluetooth のアクセス許可がないことがわかります。
アプリに対して私が持っている唯一の権限は、個人情報とストレージです。
アプリをデバイスにアップロードする方法に問題があるのではないかと考えていました。私は次のコマンドでそうしています:
cd C:\Android\Bluetooth\bin\adb -d install BlueToothTest-debug.apk
ここに私の AndroidManifest.xml があります:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.VersionOne0"
android:versionCode="1"
android:versionName="1.0">
<application android:label="@string/app_name" >
<activity android:name="BlueToothTest"
android:debuggable="true">
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
どんな助けでも大歓迎です。
ありがとうございました