(Android) Error parsing XML: not well-formed (invalid token)



error: Error parsing XML: not well-formed (invalid token)


I've looked through similar questions like these and understand that the error is caused by a compilation error in my .xml file, but I'm not really seeing an error in mine, a second set of eyes would help and be much appreciated. Unless, the problem is being caused by something else.



<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://ift.tt/nIICcg"
package="com.appName.example.appName"
>
<uses-sdk/>

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
>

<activity
android:name=".Splash"
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=".Game"
android:label="@string/app_name" >

<intent-filter>
<action android:name="com.protorobo.maherchaghlil.protorobo.GAME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>

</activity>

</application>

</manifest>

No comments:

Post a Comment