AndroidManifest.xml 文件详解

概述

AndroidManifest.xml是Android应用的入口文件,官方解释是应用清单,每个应用的根目录中都必须包含一个,文件中包含了APP的配置信息,系统需要根据里面的内容运行APP的代码,显示界面。

结构

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
		  xmlns:tools="http://schemas.android.com/tools"

你可能感兴趣的:(xml,android)