Error uploading new version of an apk to google play console

Asked

Viewed 3,490 times

0

I have an app already published and I want to publish a new version. While uploading apk I’m getting this error:

Erro google play console

Sending failed The APK or Android App Bundle must be named after package with.panterafood.alternative.

"com.panterafood.alternativa" IS THE PACKAGE NAME. apk is being compiled with the right name, so this error is not making sense to me.

informações do apk

Does anyone have any idea what it might be? How can I contact google to see if they can help me?

2 answers

2

Hello, all right!?

review the package in app/build.Gradle

defaultConfig {
        applicationId "br.com.exemplo.projeto"
        minSdkVersion 15
        targetSdkVersion 21
        versionCode 1
        versionName "R15.0c"
}

A tip, log into your app at Google play and check the package name, if it’s the same as the applicationId. inserir a descrição da imagem aqui

After you do everything, from a rebuild in the project, generate the new . apk, log in to Google play and remove from the library artifact that version that gave error.

Hugs.

  • I’m working with Xamarin, I don’t have build.gradle... In Androidmanifest the package name is right, it’s the same name as in google play...

0


I was able to solve by deleting the folders bin and obj of the android project. I gave a rebuild and managed to upload!

Browser other questions tagged

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