如何更改手机屏幕上的颤振应用程序名称显示?

时间:2018-12-29 06:21:21

标签: dart flutter flutter-dependencies

如何更改手机上显示的Flutter项目的应用程序名称? 我检查了文件pubspec.yaml

name: flutter_app
description: A new Flutter application.

已编辑名称的属性,但是导入包引用也将被更改,可以仅更改应用程序名称吗?

2 个答案:

答案 0 :(得分:4)

Android

打开AndroidManifest.xml文件,进行以下更改

<application
    android:label="App Name" ...> // Your app name here

iOS

打开info.plist文件,进行以下更改

<key>CFBundleName</key>
<string>App Name</string> // Your app name here

答案 1 :(得分:0)

要更改您的应用程序名称,您需要针对 Android 和 IOS 进行更改:

您可以使用 rename 包来简化。

只需在您的 Flutter 项目根目录中运行此命令

pub global run rename --appname "My application"

为 Android 编辑 AndroidManifest.xml,为 iOS 编辑 info.plist

对于 Android,在 AndroidManifest.xmlapplication 标记中编辑 android:label 值> 位于文件夹中:android/app/src/main

代码:

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application
        android:name="io.flutter.app.FlutterApplication"
        android:label="Your Application Name"  //here
        android:icon="@mipmap/ic_launcher">
        <activity>
        <!--  -->
        </activity>
    </application>
</manifest>

截图:

Enter image description here

对于 iOS编辑位于 Info.plist 文件中 String 标记内的值文件夹 ios/Runner .

代码:

<plist version="1.0">
<dict>
    <key>CFBundleName</key>
    <string>Your Application Name </string>  //here
</dict>
</plist>

截图:

Enter image description here

如果有问题,请执行 flutter clean 并重新启动您的应用程序。