前提・実現したいこと
Android Studioを使用し、Flutterのアプリを作っています。
以下のライブラリを使用して、アプリアイコンの設定とスプラッシュ画面を追加しました。
https://pub.dev/packages/flutter_launcher_icons
https://pub.dev/packages/flutter_native_splash
アイコン・スプラッシュ画面は無事アプリに導入できたのですが、AndroidManifest.xmlを開くとエラーの表示が出ています。
このエラーの原因は何なのでしょうか?
発生している問題・エラーメッセージ
シンボル '@mipmap/ic_launcher' を解決できません シンボル '@style/LaunchTheme' を解決できません シンボル '@style/NormalTheme' を解決できません シンボル '@drawable/launch_background' を解決できません
AndroidManifest.xml
<application android:label="TEST" android:icon="@mipmap/ic_launcher"> <activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
values/colors.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <color name="splash_color">#FFFFFF</color> </resources>
drawable/launch_background.xml
<?xml version="1.0" encoding="utf-8"?> <!-- Modify this file to customize your launch splash screen --> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@color/splash_color" /> <item> <bitmap android:gravity="center" android:src="@drawable/splash" /> </item> </layer-list>
試したこと
Android Studioのキャッシュの削除・再起動をしましたが解決しませんでした。
補足情報(FW/ツールのバージョンなど)
- Windows 10
- Android Studio 4.1.3
- Flutter 2.5.2
- Dart 2.14.3
あなたの回答
tips
プレビュー