蓝牙 LE 在 android 6.0 上找不到任何设备

Bluetooth LE can't find any device on android 6.0

我正在构建一个应用程序,它从蓝牙设备接收数据并且在 4.4.4 android smartphone 上功能齐全。但是当我在 6.0 版设备上尝试时,它找不到蓝牙设备。我在 phone 上激活了位置,并且在清单文件上添加了位置权限,但没有任何反应。

我在某处读到我必须请求用户许可并且我尝试添加

ActivityCompat.requestPermissions(this,new String[]{Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION}, 1001); //Any number

在我的 activity 的 onCreate 上,但出现错误 "cannot resolve symbol AcivityCompat" 和 "cannot resolve symbol Manifest"...

我的 build.gradle 文件是:

apply plugin: 'com.android.application'

android {
compileSdkVersion 28
buildToolsVersion '28.0.3'

defaultConfig {
    applicationId "com.redbear.chat"
    minSdkVersion 18
    targetSdkVersion 26
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
    }
}
}

dependencies {
implementation 'com.android.support:support-v4:28.+'
implementation 'com.google.android.gms:play-services-location:16.0.0'
}

我的清单文件是:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.redbear.chat"
android:versionCode="1"
android:versionName="1.0" >

<uses-feature
    android:name="android.hardware.bluetooth_le"
    android:required="true" />

<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<!-- Needed only if your app targets Android 5.0 (API level 21) or higher. -->
<uses-feature android:name="android.hardware.location.gps" />
<uses-feature android:name="android.hardware.location.network" />



<application
    android:allowBackup="true"
    android:icon="@drawable/redbear"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.redbear.chat.Main"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.redbear.chat.Chat"
        android:windowSoftInputMode="stateHidden" >
    </activity>
    <activity
        android:name=".Device"
        android:theme="@android:style/Theme.Dialog" >
    </activity>

    <service
        android:name="com.redbear.chat.RBLService"
        android:enabled="true" />
</application>

</manifest>

是的,您必须请求并获得这些权限,否则在运行时不会显示任何内容。但我可以看到你缺少对 AppCompat

的一些依赖

将此添加到您的 build.gradle 文件

implementation  com.android.support:appcompat-v7:28.0.0

并且也不要使用隐式版本号,这 will/can 会导致无法预料的错误,因为它可以在您不知情的情况下随时升级并引入严重的错误。 始终使用明确的数字设置它 'com.android.support:support-v4:28.0'

这听起来像是您忘记通过对话框主动请求许可:https://developer.radiusnetworks.com/2015/09/29/is-your-beacon-app-ready-for-android-6.html

原始想法在这里找到:Bluetooth Low Energy startScan on Android 6.0 does not find devices

问候