1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2017 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<!-- These are configurations that must exist on all Android devices. --> 18<config> 19 20 <!-- Broadcast actions that are currently exempted from O+ background 21 delivery restrictions. --> 22 <allow-implicit-broadcast action="android.intent.action.SIM_STATE_CHANGED" /> 23 <allow-implicit-broadcast action="android.intent.action.PACKAGE_CHANGED" /> 24 <allow-implicit-broadcast action="android.intent.action.MEDIA_SCANNER_SCAN_FILE" /> 25 <allow-implicit-broadcast action="android.media.action.OPEN_AUDIO_EFFECT_CONTROL_SESSION" /> 26 <allow-implicit-broadcast action="android.media.action.CLOSE_AUDIO_EFFECT_CONTROL_SESSION" /> 27 28 <!-- Whitelist of what components are permitted as backup data transports. The 29 'service' attribute here is a flattened ComponentName string. --> 30 <backup-transport-whitelisted-service 31 service="com.android.localtransport/.LocalTransportService" /> 32 33 <!-- Whitelist of bundled applications which all handle URLs to their websites by default --> 34 <app-link package="com.android.carrierdefaultapp" /> 35</config> 36