Flutter: How to modify the APP name, logo, and version number on the Android side

Modify the APP name.
Find the file: android\app\src\main\AndroidManifest.xml.
Modify the android:label under application to modify the APP name. Modify the
Logo
and go to the directory android\app\src\main\res\mipmap-hdpi, and then Place your logo picture (png format) here
. Find the file: android\app\src\main\AndroidManifest.xml.
Modify the android:icon under application and add the logo name to your path name, such as: @mipmap/ic_logo.
Note : All images with the same name under the mipmap-series folder need to be replaced, corresponding to logo images with different resolutions.
Modify the version number
. Find the file: pubspec.yaml
and modify the version to the new version number.

Guess you like

Origin blog.csdn.net/shelutai/article/details/132335699