未解决的包 'flutter'

Unresolved package 'flutter'

我从 git hub 下载 flutter 项目,开始在我的 android 工作室中实施以进行学习,但我只在 AndroidManifest.xml 文件中遇到这个问题,我还安装了所有依赖项。 请解决我的问题。 在此处输入图片描述

enter image description here

enter image description here

您需要更改 android\app\src\main\AndroidManifest.xml 文件中的“android:name”。

确保它的值为: "${applicationName}"

更改 android\app\src\main\AndroidManifest.xml 文件。

发件人:

<application
    android:name="io.flutter.app.FlutterApplication"

收件人:

<application
        android:name="${applicationName}"

 or

<application
        android:name="your_app_name"
   

如果不存在则添加这三行:

<meta-data
        android:name="flutterEmbedding"
        android:value="2" />