Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AndroidManifest.xml file not found

Tags:

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 call this broken-branch, and this error appears:

Android Source Generator: [demo] AndroidManifest.xml file not found

I'll create a new branch off master, cherrypick the changes on broken-branch onto this one, and everything works fine. Why do I get this error, and how can I avoid it?

like image 592
Rose Perrone Avatar asked Jun 04 '13 01:06

Rose Perrone


People also ask

Where can I find AndroidManifest XML file?

xml file is created in the app's corresponding dist folder. The file is located at WorkspaceName>/temp/<AppName>/build/luaandroid/dist. The manifest file provides essential information about your app to the Android operating system, and Google Play store.

What is an AndroidManifest XML file?

Every app project must have an AndroidManifest. xml file (with precisely that name) at the root of the project source set. The manifest file describes essential information about your app to the Android build tools, the Android operating system, and Google Play.

Where is the AndroidManifest XML file flutter?

Android app manifest file, AndroidManifest. xml is located in <app dir>/android/app/src/main. It contains entire details about an android application.

Is your project missing an Android AndroidManifest xml?

Well, do you have an AndroidManifest. xml file within your project? Try: Click on your project -> Refresh (F5) -> Go to "Project" in the menu bar -> Clean (and clean the project). If all else fails, restart eclipse.


1 Answers

This happened to me today.. I clicked "Sync Project with Gradle Files" and all went fine.

like image 136
cozyconemotel Avatar answered Oct 08 '22 23:10

cozyconemotel