<activity-alias android:enabled = ["true" | "false" ]android:exported = ["true" | "false" ]android:icon = "drawable resource"android:label = "string resource"android:name = "string"android:permission = "string"android:targetActivity = "string" ><intent-filter/><meta-data/></activity-alias>
<activity android:name=".shortcut"><intent-filter><action android:name = "android.intent.action.MAIN" /></intent-filter></activity><activity-alias android:name = ".CreateShortcuts" android:targetActivity = ".shortcut" android:label = "@string/shortcut" ><intent-filter><action android:name = "android.intent.action.CREATE_SHORTCUT" /><category android:name = "android.intent.category.DEFAULT" /></intent-filter></activity-alias>
<service android:enabled=["true" | "false"]android:exported[="true" | "false"]android:icon="drawable resource"android:label = "string resource"android:name = "string"android:permission = "string"android:process = "string" ></service>
<provider android:authorities="list"android:enabled=["true" | "false"]android:exported = ["true" | "false" ]android:grantUriPermissions = ["true" | "false" ]android:icon = "drawable resource"android:initOrder = "integer"android:label = "string resource"android:multiprocess = ["true" | "false" ]android:name = "string"android:permission = "string"android:process = "string"android:readPermission = "string"android:syncable = ["true" | "false" ]android:writePermission = "string" ><grant-uri-permission/><meta-data/></provider>
用户库,可自定义。所有android的包都可以引用。
<uses-library android:name = "string"android:required=["true" | "false"] />
这是在android1.6以后的新特性,支持多屏幕机制<supports-screens android:smallScreens=["true" | "false"]
android:normalScreens = ["true" | "false" ]android:largeScreens = ["true" | "false" ]android:anyDensity = ["true" | "false" ] />
<uses-configuration android:reqFiveWayNav = ["true" | "false" ]android:reqHardKeyboard = ["true" | "false" ]android:reqKeyboardType = ["undefined" | "nokeys" | "qwerty" | "twelvekey" ]android:reqNavigation = ["undefined" | "nonav" | "dpad" | "trackball" | "wheel" ]android:reqTouchScreen = ["undefined" | "notouch" | "stylus" | "finger" ] />
<uses-feature android:glEsVersion = "integer"android:name = "string"android:required = ["true" | "false" ] />
描述应用所需的api level,就是版本,目前是android 2.2 = 8,android2.1 = 7,android1.6 = 4,android1.5=3<uses-sdk android:minSdkVersion="integer"
android:targetSdkVersion = "integer"android:maxSdkVersion = "integer" />
<instrumentation android:functionalTest = ["true" | "false" ]android:handleProfiling = ["true" | "false" ]android:icon = "drawable resource"android:label = "string resource"android:name = "string"android:targetPackage = "string" />
<application . . . ><activity android:name = "XXX" . . . >android:permission="com.teleca.project.MY_SECURITY"> </activity> 、</application>