Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apk Upload Failed

I am trying to update my application since yesterday (5/3/14) but i can not. I added a higher version code and a higher version number than the previous application but nothing happened. This screenshots shows my problem.

What can i do?

Let me show you my AndroidManifest.xml too:

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


    <uses-sdk
        android:minSdkVersion="9"
        android:targetSdkVersion="19" />

  <uses-permission android:name="android.permission.INTERNET" />
  <uses-permission android:name="android.permission.VIBRATE"/>
  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />



    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name">

   <receiver android:name="MyWidgetProvider" >
            <intent-filter >
                <action 
                    android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            </intent-filter>

            <meta-data
                android:name="android.appwidget.provider"
                android:resource="@xml/widget" />
        </receiver>




    <receiver android:name="MyWidgetProvider2" >
            <intent-filter >
                <action 
                    android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            </intent-filter>

            <meta-data
                android:name="android.appwidget.provider"
                android:resource="@xml/widget2" />
        </receiver>




    <receiver android:name="MyWidgetProvider3" >
            <intent-filter >
                <action 
                    android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            </intent-filter>

            <meta-data
                android:name="android.appwidget.provider"
                android:resource="@xml/widget3" />
        </receiver>

         <meta-data android:name="com.google.android.gms.version"
               android:value="@integer/google_play_services_version"/>



        <activity
            android:name="gr.backatel.rootchecker.RootChecker"
            android:configChanges="orientation|keyboardHidden|screenSize"
            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="com.google.android.gms.ads.AdActivity"
           android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" />


        <activity android:name=".stage1" android:label="Check for Root"
           android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize">

        </activity>

        <activity android:name=".moreinfo"   android:label="@string/info">

        </activity>

         <activity android:name=".settings" android:label="Themes">

         </activity>



    </application>

</manifest>

When i am trying to update my app!!

Using mobile browser:

enter image description here

Screeshot : on Mozilla

ScreenShot:

Screenshot on Chrome:

enter image description here

When progress is 99% nothing happens in the end. Using mobile shows the error that upload failed

I tried to sing out and sign back but nothing changed.

Thanks in advance!! :)

like image 482
noobProgrammer Avatar asked Jan 11 '23 01:01

noobProgrammer


2 Answers

just log out and back in or use firefox instead of chrome. That should actually solve your problem...

like image 197
Device Avatar answered Jan 16 '23 12:01

Device


I can now confirm that there is an issue uploading applications at the moment, there are a lot of people having issues, Google are looking into it now, and it should be fixed shortly.

like image 20
apmartin1991 Avatar answered Jan 16 '23 12:01

apmartin1991