1

image

For some reason I'm constanly getting upload failed error in google play when I'm uploading the new apk.

My minsdkversion is 16 and my targetsdkversion is 25

Never had such problems before. I used a webview recently with javascript enabled. Problem persists for more than 10 hrs.

Is the issue on my side or Google's?. Please help. It's emergency.

Hulk Man
  • 153
  • 1
  • 15

1 Answers1

0

For me, the trick to get around the same error was to explicitly run the 'assemble' Gradle task (or 'assembleFullRelease' in my case) when building the APK to upload.

The APK that was produced by just running the MainActivity was always rejected by Google Play Console even though is was fetched from the same directory (build/outputs/apk/full/release).

Johan J
  • 101
  • 2
  • 4
  • What is assemebleFullRelease? I don't see that option under my gradle tasks. – ngoa Dec 19 '17 at 17:23
  • 1
    Use the 'assemble' Gradle task. That should build all the different builds that you have in your project. – Johan J Dec 20 '17 at 20:19