blob: e6de45ecad46da2b71208bf69246d659d6aeaa15 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2020 The Android Open Source Project
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.telecom.cts.thirdptydialer"
android:versionCode="1"
android:versionName="1.0">
<!-- sdk 15 is the max for read call log -->
<uses-sdk android:minSdkVersion="15" />
<uses-permission android:name="android.permission.READ_CALL_LOG"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="com.android.voicemail.permission.READ_VOICEMAIL"/>
<uses-permission android:name="com.android.voicemail.permission.WRITE_VOICEMAIL"/>
<application android:label="ThirdPtyDialerTestApp">
<service android:name=".CtsThirdPtyDialerInCallService"
android:permission="android.permission.BIND_INCALL_SERVICE"
android:launchMode="singleInstance"
android:exported="true">
<intent-filter>
<action android:name="android.telecom.InCallService"/>
</intent-filter>
<meta-data android:name="android.telecom.IN_CALL_SERVICE_UI"
android:value="true" />
<meta-data android:name="android.telecom.INCLUDE_EXTERNAL_CALLS"
android:value="true" />
</service>
<service android:name=".CtsThirdPtyDialerInCallServiceControl"
android:launchMode="singleInstance"
android:exported="true">
<intent-filter>
<action
android:name="android.telecom.cts.thirdptyincallservice.ACTION_THIRDPTY_CTRL"/>
</intent-filter>
</service>
<activity android:name="android.telecom.cts.thirdptydialer.CtsThirdPtyDialerActivity"
android:label="ThirdPtyDialerTestApp"
android:process="android.telecom.cts.thirdptydialertwo.CtsThirdPtyDialerInCallService"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.DIAL"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="tel"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.DIAL"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>
</manifest>