I have the following AndroidManifest file...
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.obviam.droidz"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/images"
android:label="@string/app_name" android:debuggable="true">
<activity android:name=".HomeView" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".DroidzActivity">
</activity>
<activity android:name=".GameOver">
</activity>
</application>
</manifest>
I am getting the following compilation error, which I can't seem to figure out...
[2012-04-17 08:39:23 - com.android.ide.eclipse.adt.internal.project.AndroidManifestHelper] Parser exception for /home/joshua/workspace/Droidz/AndroidManifest.xml: Element type "activity" must be followed by either attribute specifications, ">" or "/>".
Could anyone please suggest the cause of the error.