2012-09-26 7 views
1

내 업그레이드 된 버전을 개발자 콘솔에 업로드하는 데 어려움이 있습니다. 나는 versionCode와 versionName을 증가 시켰고 이전처럼 apk 파일을 내보내는 데 동일한 세부 정보를 사용했습니다.Android 애플리케이션 업로드 오류

새 파일을 업로드하려고 할 때 예기치 않은 오류가 발생하여 다른 파일을 선택하라는 메시지가 표시됩니다.

누구든지 힌트를 가지고 있거나이 오류를 수정하는 방법을 알고 있습니까? 문제가 내 명단에 있습니까? 내보내는 name.When 파일과의 .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> 

+0

매니페스트를 게시 할 수 있습니까? 때로는 개발자 콘솔이 버그가 있거나 서버가 다운되었지만 매니페스트를 확인하는 것이 좋습니다. – pjco

+0

방금 ​​전체 매니페스트를 추가했습니다. :) – user1701007

+0

괜찮아 보이는가, targetSdk를 추가하고 싶지만, 한 눈에 올바른 명단처럼 보일 수있다. – pjco

답변

0

R 당신에게.

+0

.apk 확장자가 있습니다. 끝에 파일 이름. – user1701007

관련 문제