Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Android Build a Simple Android App (2014) Getting Started with Android Running the Fun Facts Project

I get an error : Project 'app'not found in root project 'FunFacts'.

I tried running the project.

I get an error: AndroidManifest.xml doesnt exist or has incorrect root tag

1 Answer

Chris Wolchesky
Chris Wolchesky
12,025 Points

AndroidManifest.xml is a key file to all Android projects. It contains a detailed listing of features and permissions needed by your app, as well as a list of all activities included in the app, their relationships with each other, and other dependencies (such as broadcast message senders and receivers).

The error you're getting is indicating that the file is either missing from the project (Android Studio creates it by default, usually listed in the "main" folder of your src directory. In the project browser, it'll usually be listed below all other src subdirectories), or that the file is malformed and missing the root <Manifest>` element.

You can find more details on the Android Developers website.