2012-09-26 48 views
1

我很難將我的升級版本上傳到開發者控制檯。我已經增加了versionCode和versionName,並且我使用相同的細節來導出apk文件,就像我以前一樣。Android應用程序上傳錯誤

當我嘗試上傳新文件時,它說有一個意外的錯誤,並要求我選擇另一個文件。

有沒有人有任何提示,甚至知道如何解決這個錯誤?這個問題會出現在我的清單中嗎?

<?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> 

+0

你可以發佈你的清單?有時開發者控制檯會出問題,或者服務器也關閉,但是檢查清單 – pjco

+0

可能很好,我只是在那裏添加了整個清單。 :) – user1701007

+0

看起來不錯,可能想添加一個targetSdk,但看起來像一個正確的清單一目瞭然 – pjco

回答

0

R您包括apk文件擴展名與文件name.When要導出。

+0

我有.apk擴展名最後是文件名。 – user1701007