noobProgrammer
noobProgrammer

Reputation: 1451

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!! :)

Upvotes: 4

Views: 666

Answers (7)

Anthony
Anthony

Reputation: 3074

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.

Upvotes: 2

Anthony
Anthony

Reputation: 3074

As far as I am aware google play services are fine, I uploaded an APK not too long ago and it all went okay, but that being said there could always be an issue with the google servers, however here are a few things you can try.

Examine your project by using Android Lint tool for any omissions and errors. To find out about lint see this link:

http://tools.android.com/tips/lint

Also, you could use the aapt tool, included in the Android SDK, to process your application, based on its declared features and permissions. To do so, run aapt with the dump badging command. It will parse your application's manifest and apply the same rules as used by Google Play to determine the features that your application requires. You can view more on this here:

http://developer.android.com/guide/topics/manifest/uses-feature-element.html#testing

Upvotes: 1

danny117
danny117

Reputation: 5651

Upload for beta testing. After you have successfully downloaded your app from beta and you are certain it works correctly publish to production. See Beta testing and staged rollouts for details.

Upvotes: 1

Viral Patel
Viral Patel

Reputation: 33408

Some things you can try:

  1. Unpublish your app, wait for a while, upload your apk, then republish the app.
  2. Use a different connection or a system, if that is what the problem is.
  3. Add one of your friend OR another email of yours as a release manager and try uploading from his id.
  4. Clear your browser cache, cookies, temp files etc and retry.
  5. Just use a different name for the APK.

Do let me know if any of these work.

Upvotes: 1

Dmide
Dmide

Reputation: 6462

Try to add android:debuggable="false" inside <application> tag

Upvotes: 1

Device
Device

Reputation: 1011

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

Upvotes: 2

Rino
Rino

Reputation: 743

try recompiling your app.

After that, clean the cache of the browser. Try using a different browser if nothing has changed

Upvotes: 1

Related Questions