AndroidManifest.xml is missing

前端 未结 10 1153
天涯浪人
天涯浪人 2020-12-08 13:00

I created one android application project in eclipse and whenever I tried to run that application its throwing an error message saying AndroidManifest.xml file

相关标签:
10条回答
  • 2020-12-08 13:19

    Click project -> Refresh (F5) -> Go to "Project" in the menu bar -> Clean. It works for me.

    0 讨论(0)
  • 2020-12-08 13:23

    you should clean and refresh your project once.

    0 讨论(0)
  • 2020-12-08 13:27

    (what worked for me)

    1 - copy the file build.gradle 2 - drop the copied file in the android folder [example MyApp/android]

    0 讨论(0)
  • 2020-12-08 13:28

    I was having the same problem and didn't understand why - followed all deletes of /bin, /gen, fixing AVD's, etc, still to no avail.

    The /bin got me thinking though -

    I had previously used this advice to exclude /bin from the resource filters (in an effort to remove results from the search)....

    I removed the filter for /bin and voila.....

    Interesting this only affected me when I wanted to Debug or Run within Eclipse -- I could export a working APK without any problem, but debugging failed.

    Hope this helps.

    0 讨论(0)
  • 2020-12-08 13:30

    Delete bin folder in project and your library dependencies. Then re-run application.

    0 讨论(0)
  • 2020-12-08 13:31

    I put the AndroidManifest.xml that in appcomatv7 and pasted to the project and problem solved

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