每次嘗試啓動應用程序時,都會立即崩潰,因爲它會收到此錯誤。Android安全例外 - 沒有權限ACCESS_NETWORK_STATE
這裏是我的清單
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.simpleweatherandroid"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />
<uses-permission android:name="INTERNET"/>
<uses-permission android:name="ACCESS_NETWORK_STATE"/>
<application
android:exported = "true"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.simpleweatherandroid.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>
</application>
</manifest>
我肯定在那裏的許可,我都用完了解決方案,我可以拿出/在互聯網上找到。我無法弄清楚這一點。有誰知道什麼是錯的?我對此很新,所以它可能是一些基本的東西。
添加權限後''標籤關閉,並嘗試 –
每當我嘗試它告訴我,它需要正下方是清單標記爲它的工作 – user2913241