androidflutterflutter-dependencies

How to change the name of package apk installer in flutter?


I change my app name from AndroidManifest.xml but I want change name of package installer.

How can I change "app-release" to anything I want?

How to change app-release?

1

I change my app name from AndroidManifest.xml, but I can't change name of package installer


Solution

  • This is mainly a question about Android build, not flutter. To change the output file name you can add this code into android/app/bundle.gradle

    android {
        // ...
    
        applicationVariants.all { variant ->
            variant.outputs.all {
                outputFileName = "yourname.apk"
            }
        }
    }
    

    Even when you run the command flutter build apk you will see the wrong name in the output (I guess that's a flutter issue), but no worries, your file name will be correct:

    enter image description here