android manifest application 3 errors detected
I am trying to build a mobile app for android,using ADT,and i get a weird
error for AndroidManifest.xml,it says that are actually 3 errors
detected,in 'Application' tab.
Below is the content of the manifest file:
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.example.mfc"
android:versionCode="1"
android:versionName="1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="17" />
<uses-permission
android:name="android.permission.INTERNET"></uses-permission>
<application> <activity android:name="Home"
android:label="@string/app_name"></activity></application>
</manifest>
Can anyone tell me which is the issue?
No comments:
Post a Comment