Android Studio Internet权限错误

时间:2016-03-18 01:01:24

标签: android manifest

我在我的清单中使用了互联网权限,我将它放在应用程序上方和应用程序下方,但无论我把它放在哪里,我都会收到警告,不允许在那里。此外,我确实使用了意图填充,并且也发出了警告。当我运行我的应用程序时,我得到一个拒绝权限错误。以下是我的清单。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jrodriguez.myrssfeed">

    <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">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    </application>
    <uses-permissions android:name="android.permission.INTERNET"/>

1 个答案:

答案 0 :(得分:2)

你拼错了命令,权限没有“s”:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="jrodriguez.myrssfeed">

<uses-permission android:name="android.permission.INTERNET"/>