“运行 com.example.flutter_launcher 时出错

Ash*_*lla 9 flutter

未找到包标识符或启动活动。请检查 E:\udemy_flutter\android\app\src\main\AndroidManifest.xml 是否有错误。未找到 TargetPlatform.android_x86 的应用程序。您的项目是否缺少 android\app\src\main\AndroidManifest.xml?考虑运行“flutter create”。创建一个。

小智 36

检查 android/app/main/AndroidManifest.xml 根标签(manifest )应包含如下属性包:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.flutterdemo">
Run Code Online (Sandbox Code Playgroud)

(这是一个示例,请将“com.example.flutterdemo”替换为您的包名称)

在此输入图像描述