From the course: Android Development Essential Training: Your First App with Kotlin

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Manage the app manifest file

Manage the app manifest file - Android Tutorial

From the course: Android Development Essential Training: Your First App with Kotlin

Start my 1-month free trial

Manage the app manifest file

- [Instructor] Each Android Studio project has one or more modules. In a brand-new application, you'll typically have just one module representing the application itself. But in a complete production application, you might have one module for the app, and then other modules for various libraries that support the app. Each module has a manifest file. It's name is always the same, AndroidManifest.xml, and its stored in the manifests subdirectory. It's an XML file. Its root element is called manifest, and it declares at least one XML namespace that's used to identify various attributes in the rest of the file. The package attribute points to the base package for the application, and that will match the package where you've stored your root classes, such as MainActivity. Within the manifest, you'll find an application element. The application element has a number of useful attributes, such as allowBackup, labels, icons, and so on. But then there's a whole bunch of other important stuff…

Contents