LoginSignup
3
3

More than 3 years have passed since last update.

Flutter関連備忘録

Last updated at Posted at 2019-05-08

概要

Flutterに関する忘れがちなことをメモっておく

アプリ名変更

Android

android/app/src/main/AndroidManifest.xml
<application
        android:name="io.flutter.app.FlutterApplication"
        android:label="【アプリ名】"
        android:icon="@mipmap/launcher_icon">

iOS

ios/Runner/Info.plist
    <key>CFBundleDisplayName</key>
    <string>【アプリ名】</string>

リリース手順

Android

iOS

3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3