Reputation: 1451
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:
Screeshot : on Mozilla
Screenshot on Chrome:
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
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
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
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
Reputation: 33408
Some things you can try:
Do let me know if any of these work.
Upvotes: 1
Reputation: 1011
just log out and back in or use firefox instead of chrome. That should actually solve your problem...
Upvotes: 2
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