👀
Flutter アプリ名の変更
アプリ名の変更
下記画像の丸で囲まれている部分のアプリ名の変更方法を記述します
ios
ios/Runner/Info.plist
ファイルを編集する
<key>CFBundleDisplayName</key>
の下の<string>ここ</string>に変更したいアプリ名を入れる。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>希望のアプリ名</string>
これで再ビルドをすると変更されています!
Android
android/app/src/main/AndroidManifest.xml
ファイルを編集する
android:label="ここ"
に変更したいアプリ名を入れる。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.firebase_flutter_test">
<application
android:label="希望のアプリ名"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
こちらも再ビルドをして完了。
終わりに
Twitterでも情報発信しておりますので、ぜひフォローお願い致します!
Discussion