Answers for "flutter change app name and icon"

0

flutter change app name and icon

For Android
Inside, find <application>and change its android:label property with your desired app name.
android/app/src/main/AndroidManifest.xml
<application
        android:name="io.flutter.app.FlutterApplication"
        android:label="your_app_name"
        android:icon="@mipmap/ic_launcher">
iOS
ios/Runner/Info.plist
<key>CFBundleName</key>
<string>your_app_name</string>
Posted by: Guest on February-15-2022
0

flutter change app name and logo

The Androidmanifest.xml can now be modified. Choose the

<application
  android:name="io.flutter.app.FlutterApplication"
  android:label="YourAppName"
  android:icon="@mipmap/ic_launcher">
For Package Name

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="your.package.name">
Posted by: Guest on February-12-2022

Code answers related to "flutter change app name and icon"

Browse Popular Code Answers by Language