How do I change my IONIC app id to add in Google Play Console?

Asked

Viewed 1,203 times

1

I’m trying to publish my application in Google Play Console, but when adding the SDK appears the following message.

Use a different package name. "io.ionic.Starter" already exists in Google Play.

inserir a descrição da imagem aqui

But in my config.xml file My id is like this io.GuiaCorretor.Starter

My doubt is whether I can change this without harming everything I’ve done so far, like keytool and generate apk with the license...

  • I resolved generating the apk again.

1 answer

4


How have you changed the config.xml the next step is to remove and add the target platform on the command promp via the following commands:

ionic cordova platform rm android

Then add again

ionic cordova platform add android

At the end run the build procedure

ionic cordova build android --release --prod

sign apk with jarsigner.exe and compact apk with zipalign.exe

Good luck!

  • Thank you Felipe, I had already solved the problem but your reply was very clear!

Browser other questions tagged

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