AndroidManifest.xml file not found

前端 未结 12 2055
清酒与你
清酒与你 2020-12-09 03:20

I\'m using git, and creating lots of git branches for new features on a project I\'m working on. Every once in a while, I\'ll create a new branch off master as usual (let\'s

相关标签:
12条回答
  • 2020-12-09 03:52

    This worked for me. My project already had a settings.gradle file. I simple had to add the line include ':app' . N ow i can build and do everything.

    0 讨论(0)
  • 2020-12-09 03:53

    If you are using Maven, backup the project and close it. Open IntelliJ and select Open..., choose the pom.xml file and then select yes to open this project. Because there is already a project a popup should appear, choose 'Delete Existing Project and Import'.

    Note: I'm using IntelliJ Community Edition version 13

    0 讨论(0)
  • 2020-12-09 03:55

    While my IDE is IDEA13 with maven. Work fine with maven in command line, while using IDEA run( shift + F10) show this error. I do as below and fix this: 1.Open .iml in the project root.
    2.Find some line like:

    <option name="USE_CUSTOM_COMPILER_MANIFEST" value="true" />
    

    3.Remove this line or change value to false. This is my work way.
    May Help.

    0 讨论(0)
  • 2020-12-09 03:55

    open IDE

    project

    |--->build automatically

    uncheck it clean the project

    check build automatically opriot

    0 讨论(0)
  • 2020-12-09 03:56

    I use IntelliJ Idea and found next solution: in the root of the project (in catalog with root build.gradle) create file settings.gradle which consist include ':app' Than go to IDE and run Gradle - refresh.

    0 讨论(0)
  • 2020-12-09 03:59

    If in case, you encounter an error which shows:
    AndroidManifest.xml file is not found
    All that you have to do is reinstall the flutter package and the error is resolved!!!

    0 讨论(0)
提交回复
热议问题