2

this is one of app i have developed couple of years ago and i need to update the apk with new features and following error message pops me out from the google play consol

Your APK or Android App Bundle needs to have the package name com.voc

and my project manifest

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.voca.abc">

and build gradle (module app)

defaultConfig {
        applicationId 'com.voca.abc'
}

and folder stucture also in same. any help appriciate.

NOTE: I copied the ziped project source from my external hard drive to my working pc

thanks in-advance

Marcin Orlowski
  • 72,056
  • 11
  • 123
  • 141
Dinithe Pieris
  • 1,822
  • 3
  • 32
  • 44

1 Answers1

3

Problem solved by removing the applicationId inside the build.gradle(Module:app)

buildTypes {
    release {
        applicationId
    }
}
Marcin Orlowski
  • 72,056
  • 11
  • 123
  • 141
Dinithe Pieris
  • 1,822
  • 3
  • 32
  • 44