diff options
Diffstat (limited to 'core/res')
-rw-r--r-- | core/res/AndroidManifest.xml | 7 | ||||
-rw-r--r-- | core/res/res/values/strings.xml | 8 |
2 files changed, 15 insertions, 0 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index e008984..3c40d43 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -481,6 +481,13 @@ android:label="@string/permlab_writeProfile" android:description="@string/permdesc_writeProfile" /> + <!-- Allows an application to access data from sensors that the user uses to + measure what is happening inside his/her body, such as heart rate. --> + <permission android:name="android.permission.BODY_SENSORS" + android:permissionGroup="android.permission-group.PERSONAL_INFO" + android:label="@string/permlab_bodySensors" + android:description="@string/permdesc_bodySensors" /> + <!-- =============================================================== --> <!-- Permissions for accessing the device calendar --> <!-- =============================================================== --> diff --git a/core/res/res/values/strings.xml b/core/res/res/values/strings.xml index 11f993d..dbe5aa3 100644 --- a/core/res/res/values/strings.xml +++ b/core/res/res/values/strings.xml @@ -1328,6 +1328,14 @@ as your name and contact information. This means the app can identify you and may send your profile information to others.</string> + <!-- Title of the body sensors permission, listed so the user can decide whether to allow the application to access body sensor data. [CHAR LIMIT=30] --> + <string name="permlab_bodySensors">body sensors (like heart rate monitors) + </string> + <!-- Description of the body sensors permission, listed so the user can decide whether to allow the application to access data from body sensors. [CHAR LIMIT=NONE] --> + <string name="permdesc_bodySensors" product="default">Allows the app to + access data from sensors you use to measure what’s happening inside your + body, such as heart rate.</string> + <!-- Title of the read social stream permission, listed so the user can decide whether to allow the application to read information from the user's social stream. [CHAR LIMIT=30] --> <string name="permlab_readSocialStream" product="default">read your social stream</string> <string name="permdesc_readSocialStream" product="default">Allows the app |