Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I hope this error is in manifest file ,here i am placing the manifest file.error is showing at last line. thanks in advance

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.sri.fadeinout"
        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>
share|improve this question
1  
Have you cleaned your project? – A--C Dec 20 '12 at 0:21
yes , i cleaned my project. – Priyanka Dec 20 '12 at 0:23
1  
Try restarting Eclipse then afterwards cleaning your project again. Unless my Eclipse is being odd, I put your xml into my project and it didn't complain. Also, check if there is anything past the </manifest> tag. Maybe a stray > that you didn't copy here. – A--C Dec 20 '12 at 0:34
Thanks buddy ,problem cause : i declared </manifest> twice. Thank you soo much.. – Priyanka Dec 20 '12 at 0:52
No problem. Again like your last question, you may delete it, post an answer to your own question and accept it, or let me answer it and accept it. – A--C Dec 20 '12 at 0:58
show 1 more comment

1 Answer

up vote 1 down vote accepted

You need to make sure that you pay attention to anything after the </manifest> tag. Although the top (and what you post on SO) may be fine, if you have other things below this tag, Eclpise will throw an error (and with good reason, your xml is now malformed).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.