I've installed the Android SDK and I've started making my Hello World 
project in Eclipse Indigo. However, my project has an error and I haven't 
even done anything yet,

The error is in the file AndroidManifest.xml. The error is, "The markup in 
the document following the root element must be well-formed." The code that 
gives this error is below.

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

Since I've only started learning how to develop for Android, and I'm 
following a tutorial, I have no idea how to fix this problem. Can someone 
help me?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to