blob: 78bc0fb356654fa521509fb881643edf7fde44c9 [file] [log] [blame]
Santos Cordonee8333c2013-07-12 14:17:55 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2013 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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Santos Cordonee8333c2013-07-12 14:17:55 -070018 package="com.android.incallui"
19 coreApp="true" >
20
21 <original-package android:name="com.android.incallui" />
22
Chiao Chengd0533622013-07-15 14:54:27 -070023 <uses-permission android:name="android.permission.VIBRATE"/>
24
Santos Cordonee8333c2013-07-12 14:17:55 -070025 <application
26 android:label="@string/inCallLabel"
27 android:supportsRtl="true">
28
Chiao Chengd0533622013-07-15 14:54:27 -070029 <!-- Main in-call UI activity. This is never launched directly
30 from outside the phone app; instead, it's either launched by
31 the OutgoingCallBroadcaster (for outgoing calls), or as the
32 fullScreenIntent of a notification (for incoming calls.) -->
33 <activity android:name=".InCallActivity"
34 android:theme="@style/Theme.InCallScreen"
35 android:label="@string/inCallLabel"
36 android:excludeFromRecents="true"
37 android:launchMode="singleInstance"
38 android:screenOrientation="nosensor"
39 android:configChanges="keyboardHidden"
40 android:exported="false">
41 </activity>
42
Santos Cordoned6adb02013-07-19 17:14:06 -070043 <service android:name="CallHandlerService">
Santos Cordonee8333c2013-07-12 14:17:55 -070044 <intent-filter>
Santos Cordoned6adb02013-07-19 17:14:06 -070045 <action android:name="com.android.services.telephony.common.ICallHandlerService" />
Santos Cordonee8333c2013-07-12 14:17:55 -070046 </intent-filter>
47 </service>
48
49 </application>
50</manifest>