Android应用程序上传错误

时间:2012-09-26 17:56:53

标签: android

我很难将升级后的版本上传到开发者控制台。我已经增加了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>

1 个答案:

答案 0 :(得分:0)

你包括.apk扩展名和文件名。当你导出时。