Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - "The server could not process your apk. Try again.." error when uploading on market

So this is my Android Manifest

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.xxx.xxxxxxxxxxxxxxxx"
    android:versionCode="3"
    android:versionName="1.02">

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

    <uses-permission android:name="android.permission.WAKE_LOCK"/>


    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Black.NoTitleBar" >
        <activity
            android:name=".XXXXXXXXXActivity"
            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=".XXXXXXXXXXXXXXXX"></activity>
    </application>

</manifest>

Each time I upload to the android market, I get the error: The server could not process your apk. Try again..

I previously uploaded a few APKs, but now I decided to downgrade my app, because it works on 2.1, previously it was on minimum 2.3. And since i've changed the minSdkVersion it doesn't want to upload anymore.

like image 505
Andrei Avatar asked Feb 22 '12 04:02

Andrei


2 Answers

Looks like Android market is down. If you look carefully, you will see that upload does not even happen. So that error message is misleading you. Lets wait till Google resolves this.

like image 156
Sarang Avatar answered Sep 28 '22 01:09

Sarang


@o2genum

I reported the problem here:

https://support.google.com/androidmarket/developer/bin/request.py?contact_type=bugs

(under "problems with the developer console")

And sent them the URL to this report

Edit: Just saw this in the console:

22 February 2012: Application uploading and editing issues. We are aware of issues with uploading and editing applications in the Android Market Developer Console. We apologize for this inconvenience and are working to fix this as soon as we can.

like image 41
pjco Avatar answered Sep 28 '22 01:09

pjco