So i added this line to on top of the application node in the android manifest xml file: <uses-permission android:name="android.
A simple manifest file will look like this (the fix is i red):
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas. android.com/apk/res/android"
package="com.example"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android. permission.INTERNET" />
<application android:icon="@drawable/icon" android:label="@string/app_ name">
<activity android:name=".Login"
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>
<manifest xmlns:android="http://schemas.
package="com.example"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.
<application android:icon="@drawable/icon" android:label="@string/app_
<activity android:name=".Login"
android:label="@string/app_
<intent-filter>
<action android:name="android.intent.
<category android:name="android.intent.
</intent-filter>
</activity>
</application>
</manifest>
No comments:
Post a Comment