我正在尝试使用marshmallow nexus设备中的广播接收器接收短信。 我正在使用目标并编译SDK版本23.我知道使用低于23的目标SDK版本,但我不喜欢该解决方案。如果有办法使用目标SDK版本23+读取棉花糖中的短信,请回答。
public class SmsReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Log.d(SmsReceiver.class.getSimpleName(), "SMS received");
}
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.hello_receive_sms.app" >
<uses-permission android:name="android.permission.READ_SMS"/>
<uses-permission android:name="android.permission.RECEIVE_SMS"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name">
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="com.example.hello_receive_sms.app.SmsReceiver">
<intent-filter>
<action android:name="android.provider.Telephony.SMS_RECEIVED"/>
</intent-filter>
</receiver>
</application>
</manifest>
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example.hello_receive_sms.app"
minSdkVersion 9
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_6
targetCompatibility JavaVersion.VERSION_1_6
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
答案 0 :(得分:1)
您需要获得许可。对于api level 23+,谷歌重新设计了权限系统,以便app用户可以在安装你的应用后授予和撤销权限。
在清单中设置权限只是第一步。您应该阅读一下“android marshmallow中的运行时权限”:
http://developer.android.com/training/permissions/requesting.html