**当我尝试在手机中运行时,它工作正常,但在nexus选项卡上显示错误,我的manifest.xml文件代码如下
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.zolipe.www.contactsloader">
<uses-permission android:name="android.permission.READ_CONTACTS" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
**
提前感谢。
答案 0 :(得分:3)
你的targetSdkVersion是什么?如果是23,则需要请求用户许可。如果不这样做,即使清单中有正确的uses-permission
标记,也会出现此错误。请参阅http://developer.android.com/training/permissions/index.html。
如果您现在不想更改代码,请将targetSdkVersion设置为22.在这种情况下,将在安装时授予所有权限。