diff options
| -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 2a4d1b23332b..ebf2b34444d8 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -496,6 +496,12 @@          android:label="@string/permlab_hardware_test"          android:description="@string/permdesc_hardware_test" /> +    <!-- Allows access to configure network interfaces, configure/use IPSec, etc. +         @hide --> +    <permission android:name="android.permission.NET_ADMIN" +        android:permissionGroup="android.permission-group.SYSTEM_TOOLS" +        android:protectionLevel="signature" /> +      <!-- =========================================== -->      <!-- Permissions associated with telephony state -->      <!-- =========================================== --> diff --git a/data/etc/platform.xml b/data/etc/platform.xml index df80546688fa..692ea9d1d4a4 100644 --- a/data/etc/platform.xml +++ b/data/etc/platform.xml @@ -62,6 +62,10 @@          <group gid="mtp" />      </permission> +    <permission name="android.permission.NET_ADMIN" > +        <group gid="net_admin" /> +    </permission> +      <!-- The group that /cache belongs to, linked to the permission           set on the applications that can access /cache -->      <permission name="android.permission.ACCESS_CACHE_FILESYSTEM" >  |