diff options
Diffstat (limited to 'core/res/AndroidManifest.xml')
-rw-r--r-- | core/res/AndroidManifest.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/core/res/AndroidManifest.xml b/core/res/AndroidManifest.xml index dec7f07..003ec64 100644 --- a/core/res/AndroidManifest.xml +++ b/core/res/AndroidManifest.xml @@ -236,6 +236,7 @@ <protected-broadcast android:name="com.android.server.WifiManager.action.DELAYED_DRIVER_STOP" /> <protected-broadcast android:name="android.net.wifi.WIFI_STATE_CHANGED" /> <protected-broadcast android:name="android.net.wifi.WIFI_AP_STATE_CHANGED" /> + <protected-broadcast android:name="android.net.wifi.WIFI_CREDENTIAL_CHANGED" /> <protected-broadcast android:name="android.net.wifi.WIFI_SCAN_AVAILABLE" /> <protected-broadcast android:name="android.net.wifi.SCAN_RESULTS" /> <protected-broadcast android:name="android.net.wifi.RSSI_CHANGED" /> @@ -827,6 +828,21 @@ android:permissionGroup="android.permission-group.NETWORK" android:protectionLevel="signature|system" /> + <!-- @SystemApi @hide Allow system apps to receive broadcast + when a wifi network credential is changed. + <p>Not for use by third-party applications. --> + <permission android:name="android.permission.RECEIVE_WIFI_CREDENTIAL_CHANGE" + android:permissionGroup="android.permission-group.NETWORK" + android:protectionLevel="signature|system" /> + + <!-- @SystemApi @hide Allows an application to modify any wifi configuration, even if created + by another application. Once reconfigured the original creator canot make any further + modifications. + <p>Not for use by third-party applications. --> + <permission android:name="android.permission.OVERRIDE_WIFI_CONFIG" + android:permissionGroup="android.permission-group.NETWORK" + android:protectionLevel="signature|system" /> + <!-- @hide --> <permission android:name="android.permission.ACCESS_WIMAX_STATE" android:permissionGroup="android.permission-group.NETWORK" @@ -2279,6 +2295,14 @@ android:description="@string/permdesc_modifyParentalControls" android:protectionLevel="signature|system" /> + <!-- Must be required by a {@link android.media.routing.MediaRouteService} + to ensure that only the system can interact with it. + @hide --> + <permission android:name="android.permission.BIND_ROUTE_PROVIDER" + android:label="@string/permlab_bindRouteProvider" + android:description="@string/permdesc_bindRouteProvider" + android:protectionLevel="signature" /> + <!-- Must be required by device administration receiver, to ensure that only the system can interact with it. --> <permission android:name="android.permission.BIND_DEVICE_ADMIN" @@ -2861,6 +2885,13 @@ android:description="@string/permdesc_bindConditionProviderService" android:protectionLevel="signature" /> + <!-- Must be required by a {@link android.media.routing.MediaRouteService}, + to ensure that only the system can bind to it. --> + <permission android:name="android.permission.BIND_MEDIA_ROUTE_SERVICE" + android:label="@string/permlab_bindMediaRouteService" + android:description="@string/permdesc_bindMediaRouteService" + android:protectionLevel="signature" /> + <!-- Must be required by an {@link android.service.dreams.DreamService}, to ensure that only the system can bind to it. --> <permission android:name="android.permission.BIND_DREAM_SERVICE" |