blob: 0b603e0b329abda5aff19a0192972fb923cc11a4 [file] [log] [blame]
Santos Cordonb415e4d2013-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 Cordonb415e4d2013-07-12 14:17:55 -070018 package="com.android.incallui"
19 coreApp="true" >
20
21 <original-package android:name="com.android.incallui" />
22
Yorke Leebe8060a2013-08-07 13:49:32 -070023 <uses-permission android:name="android.permission.READ_CONTACTS" />
Chiao Chenga44c5912013-07-15 14:54:27 -070024 <uses-permission android:name="android.permission.VIBRATE"/>
25
Santos Cordonb415e4d2013-07-12 14:17:55 -070026 <application
Santos Cordon70304372013-08-09 13:21:47 -070027 android:name="InCallApp"
Santos Cordonb415e4d2013-07-12 14:17:55 -070028 android:label="@string/inCallLabel"
29 android:supportsRtl="true">
30
Chiao Chenga44c5912013-07-15 14:54:27 -070031 <!-- Main in-call UI activity. This is never launched directly
32 from outside the phone app; instead, it's either launched by
33 the OutgoingCallBroadcaster (for outgoing calls), or as the
34 fullScreenIntent of a notification (for incoming calls.) -->
35 <activity android:name=".InCallActivity"
36 android:theme="@style/Theme.InCallScreen"
37 android:label="@string/inCallLabel"
38 android:excludeFromRecents="true"
39 android:launchMode="singleInstance"
40 android:screenOrientation="nosensor"
41 android:configChanges="keyboardHidden"
42 android:exported="false">
43 </activity>
44
Santos Cordon66b2c282013-07-19 17:14:06 -070045 <service android:name="CallHandlerService">
Santos Cordonb415e4d2013-07-12 14:17:55 -070046 <intent-filter>
Santos Cordon66b2c282013-07-19 17:14:06 -070047 <action android:name="com.android.services.telephony.common.ICallHandlerService" />
Santos Cordonb415e4d2013-07-12 14:17:55 -070048 </intent-filter>
49 </service>
50
Santos Cordon70304372013-08-09 13:21:47 -070051 <!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->
52 <receiver android:name="InCallApp$NotificationBroadcastReceiver" exported="false">
53 <intent-filter>
54 <action android:name="com.android.incallui.ACTION_HANG_UP_ONGOING_CALL" />
55 </intent-filter>
56 </receiver>
57
Santos Cordonb415e4d2013-07-12 14:17:55 -070058 </application>
59</manifest>