Error sending Phonegap pro Googleplay APK

Asked

Viewed 3,281 times

2

Sending the Phonegap APK pro Googleplay shows the following error:

SEND NEW APK TO PRODUCTION

Sending failed You have uploaded a debugged APK. For reasons of security, disable debugging before posting it on Google Play. Learn more about debugged Apks.. You sent a signed APK in mode debug. Sign your APK in launch mode. Learn more about how to sign. Use a different package name. "io.cordova.hellocordova" already exists in Google Play.

How to solve this ?

  • That’s how @Cordovaing responded, you need to send a signed APK for release (release). I don’t know which IDE you are using, if it is Eclipse the demonstrated steps serve, if it is another, look up your IDE documentation. You could also add such information to the question.

1 answer

3

Hello!

You must send a digitally signed APK with a binary called "Keystore". As a way to better understand, it’s like you’re trying to send a DEBUG version instead of a RELEASE version.

To solve the problem in Eclipse, just do the following:

  • 1 - Right click on the project icon;
  • 2 - Select the option: Android Tools > Export Signed Application Package...
  • 3 - The following screen will appear:

inserir a descrição da imagem aqui

  • 4 - Select Create Keystore. Name and assign a password to your file;
  • 5 - Ready! Now, whenever you need to create a signed package, use the same file you just created.

I hope it helps. :)

Browser other questions tagged

You are not signed in. Login or sign up in order to post.