Home > OS >  app-release.apk not installing after changing package name in flutter?
app-release.apk not installing after changing package name in flutter?

Time:01-19

I have changed the package name and name of my application. After changing it, the build apk_file was not installing in device. Can any one have solution for this.

Note: I am using VS-Code.

PFAenter image description here

CodePudding user response:

I have added --no-shrink in command of building apk.

flutter build apk --no-shrink

Hope it will work.

Thank you.

CodePudding user response:

That could be because of the debug and profile manifest files as well as the kotlin file, the package name needs to be changed there too.

  •  Tags:  
  • Related