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<!-- Phone app resources that may need to be customized 18 for different hardware or product builds. --> 19<resources> 20 <!-- Allow handover from telephony calls to another ConnectionService. --> 21 <bool name="config_support_handover_from">true</bool> 22 <!-- Show enabled lte option for lte device --> 23 <bool name="config_enabled_lte" translatable="false">true</bool> 24 <!-- This device supports the AudioManager Telephony audio device and output onto this 25 device using {@link AudioDeviceInfo#TYPE_TELEPHONY}. 26 This is used to support carriers which generate a recording tone to the remote party 27 when a call recording app is in use. --> 28 <bool name="config_support_telephony_audio_device">true</bool> 29 30 <!-- String indicating the package name of the device ImsService implementation for MMTEL. --> 31 <string name="config_ims_mmtel_package" translatable="false">org.codeaurora.ims</string> 32 33 <!-- String indicating the package name of the device ImsService implementation for RCS. --> 34 <string name="config_ims_rcs_package" translatable="false">com.android.service.ims</string> 35</resources> 36