-1

Apk upload failed and shows this message. What can be the issue?

Ankit
  • 1,118
  • 13
  • 21
  • This happens, because you're using different android store key when building your release apk. – ישו אוהב אותך Sep 27 '16 at 06:17
  • Possible duplicate of [Can't upload updated APK to Google Play due to different certificate](http://stackoverflow.com/questions/26288234/cant-upload-updated-apk-to-google-play-due-to-different-certificate) – reixa Sep 27 '16 at 07:19

1 Answers1

0

The first time you released that app you had to create a new Key Store used to sign it. For any future update you need to sign the app with that same generated Key otherwise Google Play will recognize it as a new one.

You can read from the official Google Docs here on how to sign your Release Build

LS_
  • 6,763
  • 9
  • 52
  • 88