diff options
Diffstat (limited to 'packages/SystemUI/AndroidManifest.xml')
-rw-r--r-- | packages/SystemUI/AndroidManifest.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/packages/SystemUI/AndroidManifest.xml b/packages/SystemUI/AndroidManifest.xml index d32df6e..ba9b5b0 100644 --- a/packages/SystemUI/AndroidManifest.xml +++ b/packages/SystemUI/AndroidManifest.xml @@ -82,5 +82,17 @@ android:finishOnCloseSystemDialogs="true" android:excludeFromRecents="true"> </activity> + + <!-- started from NetworkPolicyManagerService --> + <activity + android:name=".net.NetworkOverLimitActivity" + android:exported="true" + android:permission="android.permission.MANAGE_NETWORK_POLICY" + android:theme="@android:style/Theme.Holo.Panel" + android:finishOnCloseSystemDialogs="true" + android:launchMode="singleTop" + android:taskAffinity="com.android.systemui.net" + android:excludeFromRecents="true" /> + </application> </manifest> |