skip to Main Content

I download the flutter project from git hub start implementing in my android studio to learn but I get this problem in AndroidManifest.xml file only here and I also install all dependencies.
Please resolve my problem.
enter image description here

enter image description here

enter image description here

2

Answers


  1. You need to change the "android:name" in androidappsrcmainAndroidManifest.xml file.

    Make sure it’s value is:
    "${applicationName}"

    Login or Signup to reply.
  2. Change the androidappsrcmainAndroidManifest.xml file.

    From :

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

    To :

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

    add this three lines if does not exist :

    <meta-data
            android:name="flutterEmbedding"
            android:value="2" />
           
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search