Android应用程序上载错误

Android应用程序上载错误,android,Android,我很难将升级后的版本上传到开发者控制台。我增加了versionCode和versionName,并使用与以前相同的详细信息导出apk文件 当我试图上传新文件时,它说有一个意外错误,并要求我选择另一个文件 是否有人有任何提示,甚至知道如何修复此错误?问题会出现在我的舱单上吗 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/andro

我很难将升级后的版本上传到开发者控制台。我增加了versionCode和versionName,并使用与以前相同的详细信息导出apk文件

当我试图上传新文件时,它说有一个意外错误,并要求我选择另一个文件

是否有人有任何提示,甚至知道如何修复此错误?问题会出现在我的舱单上吗

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="kev.harris"
android:versionCode="2"
android:versionName="1.1" >

<uses-sdk android:minSdkVersion="7" />

<application
    android:icon="@drawable/man21"
    android:label="@string/app_name" 
    android:theme="@android:style/Theme.NoTitleBar"
    android:debuggable="false">
    <activity
        android:name=".AssignmentActivity"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".MainMenu"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >
        <intent-filter>
            <action android:name="kev.harris.MAINMENU" />

            <category android:name="android.intent.category.DEFAULT" />
            <!-- makes it so that the code is recognised but is to run in the background -->
        </intent-filter>
    </activity>
    <activity
        android:name=".MainGame"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >
        <intent-filter>
            <action android:name="kev.harris.MainGame" />

            <category android:name="android.intent.category.DEFAULT" />
            <!-- makes it so that the code is recognised but is to run in the background -->
        </intent-filter>
    </activity>
    <activity
        android:name=".Savefile"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >

        <!-- saving stuff -->
    </activity>
    <activity
        android:name=".Continues"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >
        <intent-filter>
            <action android:name="kev.harris.CONTINUES" />

            <category android:name="android.intent.category.DEFAULT" />
            <!-- makes it so that the code is recognised but is to run in the background -->
        </intent-filter>
        <!-- continuing -->
    </activity>
    <activity
        android:name=".Dead"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >
    </activity>
    <activity
        android:name=".NewGame"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >

        <!-- used for the choice between male and female -->
    </activity>
    <activity
        android:name=".Male"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >

        <!-- for choosing the standard or custom picture -->
    </activity>
    <activity
        android:name=".CMPicture"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >

        <!-- for the male custom picture -->
    </activity>

    <activity
        android:name=".MPicture"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >

        <!-- for the male normal picture -->
    </activity>
    <activity
        android:name=".Female"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >

        <!-- for the female choice of picture -->
    </activity>
    <activity
        android:name=".CfPicture"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >

        <!-- for the female custom picture -->
    </activity>
    <activity
        android:name=".FPicture"
        android:label="@string/app_name"
        android:screenOrientation="portrait" >

        <!-- for the female normal picture -->
    </activity>
</application>

R您可以在文件名中包含.apk扩展名。当您导出时。

您可以发布您的清单吗?有时,开发人员控制台有问题,或者服务器也停机,但检查您的清单可能会更好。我刚刚在那里添加了整个清单看起来没问题,可能想添加一个targetSdk,但看起来像是一个正确的清单。我将在中添加该清单:感谢您查看我的清单:我在文件名的末尾有.apk扩展名。