• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps AndroidManifest.xml Error

11clock

Lurker
I'm currently learning how to develop Android applications using Eclipse, following a tutorial I found online. I have a problem. There is an error in AndroidManifest.xml and I haven't even touched this file yet.

"The markup in the document following the root element must be well-formed."

I'm not sure what this means, but it's this bit right here that is causing this.

Code:
</manifest><manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.tutorial.towerofhanoi"
    android:versionCode="1"
    android:versionName="1.0" >

Can someone help me?
 
That </manifest> at the very beginning should go after the <manifest> is closed.

Code:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.tutorial.towerofhanoi"
    android:versionCode="1"
    android:versionName="1.0" ></manifest>
 
Back
Top Bottom