我是为 android 开发的新手,在开发使用蓝牙的 android 应用程序时,我知道我需要在 xml 文件中添加使用蓝牙的权限。
我这样做了,但是在我的设备上运行时,该应用程序不会使用蓝牙。在 Android 中的“管理应用程序”下仔细查看后,我发现该应用程序没有蓝牙权限。
我对该应用程序拥有的唯一权限是:个人信息和存储空间。
我想知道我将应用程序上传到设备的方式是否有问题。我正在使用以下命令执行此操作:
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>
任何帮助表示赞赏。
谢谢