I've faced this problem when I'm trying to upload my android application on Android market. I've visited this question and answer of stackoverflow and I believe that my AndroidManifest.xml is in apk file when I export and all content of this xml file are correct for sure as follow.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cfdocumentation"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/coldfusion_icon" android:label="@string/app_name">
<activity android:name="MainActivity"
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=".Detail" />
<activity android:name=".related" />
<activity android:name=".Lists" />
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk android:minSdkVersion="5" />
</manifest>
Please help me how come I faced this error message of android market when I'm trying to upload.