diff options
author | Scott Main <smain@google.com> | 2012-11-01 10:55:02 -0700 |
---|---|---|
committer | Scott Main <smain@google.com> | 2012-11-01 10:55:02 -0700 |
commit | 277b352d9f9002eb63541c86ea9388be3d7c0e16 (patch) | |
tree | 15a64d4b24e76ba9ea00f9eab684ab6dca8bf41c /core/res/AndroidManifest.xml | |
parent | 8761e143c987fc48d854818988cde44700c9f602 (diff) | |
download | frameworks_base-277b352d9f9002eb63541c86ea9388be3d7c0e16.zip frameworks_base-277b352d9f9002eb63541c86ea9388be3d7c0e16.tar.gz frameworks_base-277b352d9f9002eb63541c86ea9388be3d7c0e16.tar.bz2 |
docs: update description for location permissions
bug: 6996667
Change-Id: I3b5d706d98b56386a88b33a343721ff7432063b9
Diffstat (limited to 'core/res/AndroidManifest.xml')
-rw-r--r-- | core/res/AndroidManifest.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index a5aa713..3f20ed1 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -503,14 +503,16 @@ android:permissionGroupFlags="personalInfo" android:priority="330" /> - <!-- Allows an application to access fine (e.g., GPS) location --> + <!-- Allows an app to access precise location from location sources such + as GPS, cell towers, and Wi-Fi. --> <permission android:name="android.permission.ACCESS_FINE_LOCATION" android:permissionGroup="android.permission-group.LOCATION" android:protectionLevel="dangerous" android:label="@string/permlab_accessFineLocation" android:description="@string/permdesc_accessFineLocation" /> - <!-- Allows an application to access coarse (e.g., Cell-ID, WiFi) location --> + <!-- Allows an app to access approximate location derived from network location + sources such as cell towers and Wi-Fi. --> <permission android:name="android.permission.ACCESS_COARSE_LOCATION" android:permissionGroup="android.permission-group.LOCATION" android:protectionLevel="dangerous" |