标签:android des http java art html
<uses-permission android:name="string" android:maxSdkVersion="integer" />
<manifest>
For more information on permissions, see the Permissions section in the introduction and the separate Security and Permissions document. A list of permissions defined by the base platform can be found at android.Manifest.permission
.
android:name
<permission>
element, a permission defined by another application, or one of the standard system permissions, such as "android.permission.CAMERA
" or "android.permission.READ_CONTACTS
". As these examples show, a permission name typically includes the package name as a prefix.android:maxSdkVersion
For example, beginning with Android 4.4 (API level 19), it‘s no longer necessary for your appto request the WRITE_EXTERNAL_STORAGE
permission when yourapp wants to write to its own application-specific directories on external storage (the directoriesprovided by getExternalFilesDir()
). However,the permission is required for API level 18 and lower. So you can declare that thispermission is needed only up to API level 18 with a declaration such as this:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="18" />
This way, beginning with API level 19, the system will no longer grant your app theWRITE_EXTERNAL_STORAGE
permission.
Android 官方文档:(二)应用清单 —— 2.26 <uses-permission>标签,布布扣,bubuko.com
Android 官方文档:(二)应用清单 —— 2.26 <uses-permission>标签
标签:android des http java art html
原文地址:http://www.cnblogs.com/mengfanrong/p/3819198.html