我正在构建一个从蓝牙设备接收数据并在4.4.4 android智能手机上具有全部功能的应用程序。但是,当我在6.0版设备上尝试时,找不到蓝牙设备。我已经在手机上激活了位置信息,并且添加了清单文件中的位置信息许可权,但没有任何反应。
我读过某个地方,我必须向用户请求权限,并且尝试添加
ActivityCompat.requestPermissions(this,new String[]{Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION}, 1001); //Any number
关于我的活动的onCreate,但出现错误“无法解析符号AcivityCompat”和“无法解析符号清单” ...
我的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>
答案 0 :(得分:0)
是的,您必须询问并被授予那些权限,否则在运行时将不会显示任何内容。但是我看到的是您缺少对AppCompat
将此添加到您的build.gradle
文件
implementation com.android.support:appcompat-v7:28.0.0
也不要使用隐式版本号,这将/将导致无法预料的错误,因为它可以在您不知道并引入令人讨厌的错误的任何时候进行升级。
始终使用明确的数字进行设置
'com.android.support:support-v4:28.0'
答案 1 :(得分:0)