Strange problem here. I have a deployed application on Google Play. From Google Play Developer Console I'm trying to update the current version of my app with the new apk (version code 22 vs version code 21), however, upload fails with a generic "Upload error" message. I already tried to launch lint command and it builds the project without any error. Does anybody have any idea? Thanks
By contacting the Google Support, they told us that the problem could be related to our DexGuard version. After updating the library to last version (8.1.23), we regenerated the apk and uploaded it without any problem :)
I have also faced same issue few days before. I have solved it by just changing version code and upload it again.
Now if you upload apk with version code 22, change it to 23 and upload it again, hopefully your issue will resolved.
Related
I am using Appsflyer library in my project. Previously I was using version 5.0.0. Then I got this message when uploading a new version.
The developer of AppsFlyer SDK (com.appsflyer:af-android-sdk) has reported version 5.0.0 as outdated. You must upgrade to a newer version (5.1.0+) before you can publish a new release to production.
So I updated the version from 5.0.0 to 6.5.4. But I still get this message. I am unable to upload app to play store.
If you need any other information, please let me know through the comments section. I will update it here. Thank you all in advance.
Before posting this question I tried "invalidate cache / restart" option. It didn't work. But after reading the comment from Pierre, I cleaned the project and tried again. Surprisingly it worked. Thank you Pierre.
I had the same issue with a different library. even after removing the library still, issue came. and I was using react native. first tried with ./gradlew clean then ./gradlew build. then it solved
I have a problem with packaging Unreal project for android and publishing on Google Play Store.
When uploading it shows an error:
We've detected this app uses an unsupported version Play billing. Please upgrade to Billing Library version 3 or newer to publish this app.
I have project configured for Google Play Billing. And in file in engine/plugins/Online the version is set to 3.0.0. I also tried different versions but with no success. Every answer i found was pointing to this file and at this point nothing seems to work.
If anybody faced a similiar issue and knows the answer i would be extremly thankful.
Download this plugin, add it to your project, and enable it in it's settings under Plugins in Project Settings. You don't have to use it or do anything with it. It just includes the library. Can confirm this will pass the Google Play store check.
https://www.unrealengine.com/marketplace/en-US/product/android-play-billing
When I want to upload app bundle to GooglePlay with any Huawei dependency it gives error without any information.
I tried all of these one by one and every time it gave error until I remove all of these from gradle. I tried to add these dependencies to another app and publish however result was same.
However interestingly I can upload APK without any error.
This problem should be caused by Language package problem.
You can go to the application's build.gradle file, in android->defaultConfig, limit the languege resources to what you'd like to use:
android {
defaultConfig {
...
resConfigs "en", "fr" //pick the languages you'd like to use
}
}
Then rebuild the .aab file and try uploading.
APK can you uploaded, but Google play console showing error (red icon) while uploading app bundle. since google console is not showing any tip or error details. If you are using Huawei services HMS core related libraries in your application you need to use the latest
Huawei push services and it will resolve the problem with app bundle upload.
implementation 'com.huawei.hms:push:5.0.4.302'
You can try to upload APK instead of AppBundle. We faced same issue two weeks ago and fix it with uploading APK.
Update:
Push Kit 5.0.2.300 has not fixed the issue yet. The latest version of SDK will be released in November 16 here. Please update it to 5.0.4.302.
This problem is a known bug and it has been rectified already. Please update the HMS Core SDK to latest version here.
Our App Kidstriangle User installation from google play store works fine on Android 4,5,6 but we always get 504 error when install on Any Android 7
1. Already tried clear cache, clear data, login/out from store.
Any idea why this is specific to Android 7 only.
We are using google-play-service GCM:7.0.0 (used for notification) to get maximum comparability is that can be one of the reason?
1. Using latest Android studio and Graddle with targetSDK 25 and compiled with 25.0.3, minSDK 16
The Problem is if you are using android 2.2.2
1. release apk are aleardy algned avoid aligning them again
2. avoid/uncheck v12 full signature while generating the signed apk
Google issue: 504 is generic error that comes after app is being downloaded from google play store and before installation starts. this error code typically is being used to show the issue with google play service. but google is using this error code for non-obvious reason as well that makes user more confusing.
So advice if you are having error code: 504 while installing app from google play store use above two recipe to fix it.
This fixed 504 error for me
So at the time of generating build "Generate Signed APK -> Signature Versions: Select only V1(Jar Signature)"
Cannot upload APK to google play.
Already tried other browsers and PCs. In no was it is possible to upload.
Always get:
Upload new APK to Production
Upload failed
We could not save your changes. Please try again.
Upload another APK
Seems to be something on Googles Part. A quick search shows that a lot of people is having this issue right now, me included.
EDIT 2014-03-17:
Seems like this is still a issue for a lot of people, https://code.google.com/p/android/issues/detail?id=67226
Still no word from Google though as far as I know.
EDIT 2:
Seems to work fine for me now. Not sure if it will persist or even work for others.
In my case it was telling me upload failed and to please try again.
In the network tab I could see the upload failing and retrying in a loop
I logged out and back in and I could upload the .apks
For more troubleshooting view here
https://support.google.com/googleplay/android-developer/answer/9061737?hl=en
Late answer but it might be helpful to someone.
In my case there was no problem of chrome/safari browser, After archive i got 2 apks out of which, i was uploading "xxxx-Signed.apk" so it was giving error like 'We can not save your changes. Please try again.' later i uploaded 2nd "xxxx.apk" and it uploaded successfully.
Hope helpful: My Upload failed today app currently targets API level 25 and must target at least API level 26 to ensure it is built on the latest APIs optimized for security and performance. Change your app's target API level to at least 26.
I have added in config.xml the below line then uploaded succesfully.
<preference name="android-targetSdkVersion" value="26" />
2019 Mar 13 issue occurred.
2019 Mar 13 issue got resolved.
The issue was on Google side.
This is confirmed by googleplay-developer-support#google.com
Followed the below steps:
Raised a bug here:
https://support.google.com/googleplay/android-developer/contact/publishing?extra.IssueType=submitting
They have responded. And the issue is fixed for me.
But, if you still have issue, then do the below as given by googleplay-developer-support#google.com
Raise here: https://support.google.com/accounts/answer/32050 as given by
Chat here: https://support.google.com/googleplay/android-developer/?hl=en#contact=1&topic=3450769
In my case I have uploaded the wrong apk, which was still in artifact library, So I deleted that and then upload the correct apk with the correct version it solves the problem for me.
Make sure you increased version code and still its showing same error then log out google play console and login and try again it will work 100%
Please for those who still thinking it's from google part but didn't try the cleaning solution yet, please give it a try:
This worked for me after many days of searches..
I completely uninstalled my browser (Firefox in my case)
I made sure nothing about the browser remains in my system following this ->how to completely remove firefox from ubuntu
then I re-installed the browser and logged in to my playstore console
This really worked . I'm able to upload .apk as well as .aab