diff options
author | Steve Kondik <shade@chemlab.org> | 2013-07-11 15:23:02 -0700 |
---|---|---|
committer | Gerrit Code Review <gerrit@cyanogenmod.org> | 2013-07-14 23:59:14 -0700 |
commit | 6e84c457264a3d6b90a2bdcee5b188373b2d0291 (patch) | |
tree | 549bf93776673f84ee58f7eecf1497c4fa2c0f36 | |
parent | b11c6c0fed0c3d938ade25c12f95fb317554c31f (diff) | |
download | frameworks_base-6e84c457264a3d6b90a2bdcee5b188373b2d0291.zip frameworks_base-6e84c457264a3d6b90a2bdcee5b188373b2d0291.tar.gz frameworks_base-6e84c457264a3d6b90a2bdcee5b188373b2d0291.tar.bz2 |
systemui: Add CONNECTIVITY_INTERNAL permission
* SystemUI needs to be able to list interfaces if tethering is in use
and we ask for a second tethering path to be set up (BT+USB, etc).
* Add permission to stop exceptions in the framework and enable
tethering thru multiple paths.
Change-Id: If7a65c31557dc2f0451f0612fb109f61e8056368
-rw-r--r-- | packages/SystemUI/AndroidManifest.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml index 57d31a1..fcd4c9d 100644 --- a/packages/SystemUI/AndroidManifest.xml +++ b/packages/SystemUI/AndroidManifest.xml @@ -37,6 +37,7 @@ <uses-permission android:name="android.permission.ACCESS_4G_STATE" /> <uses-permission android:name="android.permission.CHANGE_4G_STATE" /> <uses-permission android:name="com.android.phone.CHANGE_NETWORK_MODE" /> + <uses-permission android:name="android.permission.CONNECTIVITY_INTERNAL" /> <!-- Physical hardware --> <uses-permission android:name="android.permission.MANAGE_USB" /> |