From c203135c54b20297c45ff0cd8c0a07d5ba936d2a Mon Sep 17 00:00:00 2001 From: Andrew Solovay Date: Wed, 24 Feb 2016 15:09:51 -0800 Subject: [PATCH] docs: New N Preview "permissions changes" doc See first comment for doc stage location. bug: 27192015 Change-Id: I0e2d5e9559b9a428ca6da7298dfe1aca18c28836 --- docs/html/preview/permission-changes.jd | 45 +++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 docs/html/preview/permission-changes.jd diff --git a/docs/html/preview/permission-changes.jd b/docs/html/preview/permission-changes.jd new file mode 100644 index 0000000000000..85083b67f1358 --- /dev/null +++ b/docs/html/preview/permission-changes.jd @@ -0,0 +1,45 @@ +page.title=Permission changes +page.metaDescription=Updates to permissions in the N Developer Preview. +page.keywords="android N", "permissions" + +@jd:body + + + +

+ The N Developer Preview includes the following changes to permissions. +

+ +

GET_ACCOUNTS deprecated

+

+ The GET_ACCOUNTS permission is now deprecated. The system ignores + this permission for apps that target the N Developer Preview. +

+ +

New storage option: ACTION_OPEN_EXTERNAL_DIRECTORY

+ +

+ Apps can now use the intent ACTION_OPEN_EXTERNAL_DIRECTORY to + request that the system create a directory for the app's use. The system + prompts the user to grant approval. If the user approves, the app can read + and write files and directories in that one directory (and its descendants). + The app does not need {@link android.Manifest.permission_group#STORAGE + STORAGE} permissions to access this external directory. +

+ +

+ For more information about this intent, see the Intent + documentation in the N Preview + SDK Reference. +