diff options
| author | 2013-01-29 17:01:01 -0800 | |
|---|---|---|
| committer | 2013-01-29 17:01:01 -0800 | |
| commit | 9c4ba4fe752b131b01aa402389c96eb8f24764b8 (patch) | |
| tree | 02a990d297fcfd2d5253efcf4396bf9c7e48d215 | |
| parent | b3eab8ff6169ec6f9e5fe7c00a5dc8925e95b1e6 (diff) | |
| parent | b616f0c239ad61f818741909821b86aceff60b60 (diff) | |
am b616f0c2: add android.permission.LOOP_RADIO for access to loop radio device
# Via Doug Zongker
* commit 'b616f0c239ad61f818741909821b86aceff60b60':
  add android.permission.LOOP_RADIO for access to loop radio device
| -rw-r--r-- | core/res/AndroidManifest.xml | 6 | ||||
| -rw-r--r-- | data/etc/platform.xml | 4 | 
2 files changed, 10 insertions, 0 deletions
| diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index 2a357afc28ef..bee9a8cf804c 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -714,6 +714,12 @@          android:permissionGroup="android.permission-group.NETWORK"          android:protectionLevel="signature|system" /> +    <!-- Allows access to the loop radio (Android@Home mesh network) device. +	@hide --> +    <permission android:name="android.permission.LOOP_RADIO" +	android:permissionGroup="android.permission-group.NETWORK" +	android:protectionLevel="signature|system" /> +          <!-- ================================== -->      <!-- Permissions for accessing accounts -->      <!-- ================================== --> diff --git a/data/etc/platform.xml b/data/etc/platform.xml index 83ecdd95b384..cf04b5ca81d1 100644 --- a/data/etc/platform.xml +++ b/data/etc/platform.xml @@ -106,6 +106,10 @@          <group gid="net_bw_acct" />      </permission> +    <permission name="android.permission.LOOP_RADIO" > +        <group gid="loop_radio" /> +    </permission> +      <!-- ================================================================== -->      <!-- ================================================================== -->      <!-- ================================================================== --> |