LoginSignup
0
1

More than 5 years have passed since last update.

FlutterでSplashScreenとflutter_launcher_iconsを共存させる

Last updated at Posted at 2019-02-12

問題

FlutterでSplashScreenを設定した際、flutter_launcher_iconsプラグインを導入すると、AndroidManifestのSplashScreen側アイコン名が修正されてしまう。

解決方法

ここを修正すればいいのですが、いい解決方法が浮かばなかったので、小手先で解決しました。

# 修正前
<meta-data
    android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
    android:label="flutter_splash"
    android:icon="@mipmap/hoge_logo"
    android:value="true"/>

# 修正後(android:icon=の後に半角スペースを入れる)
<meta-data
    android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
    android:label="flutter_splash"
    android:icon= "@mipmap/hoge_logo"
    android:value="true"/>
0
1
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
0
1