Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Error running com.example.flutter_launcher

Tags:

flutter

package identifier or launch activity not found. Please check E:\udemy_flutter\android\app\src\main\AndroidManifest.xml for errors. No application found for TargetPlatform.android_x86. Is your project missing an android\app\src\main\AndroidManifest.xml? Consider running "flutter create ." to create one.

like image 485
Ashraf fathalla Avatar asked May 05 '26 19:05

Ashraf fathalla


1 Answers

Check android/app/main/AndroidManifest.xml the root tag (manifest) should contain the attribute package as follows:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.flutterdemo">

(this is an example, substitute "com.example.flutterdemo" with your package name)

enter image description here

like image 197
Maurizio Gennaro Cataldo Avatar answered May 08 '26 10:05

Maurizio Gennaro Cataldo