blob: 42d8e317372aedf294dcb5ddaf5d15d2c13e3fcd [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"/>
Chiao Cheng033ed592013-08-16 15:45:35 -070025 <uses-permission android:name="android.permission.INTERNET" />
Santos Cordone7a567e2013-08-20 15:07:51 -070026 <uses-permission android:name="android.permission.WAKE_LOCK"/>
Chiao Chenga44c5912013-07-15 14:54:27 -070027
Santos Cordonb415e4d2013-07-12 14:17:55 -070028 <application
Santos Cordon70304372013-08-09 13:21:47 -070029 android:name="InCallApp"
Santos Cordonb415e4d2013-07-12 14:17:55 -070030 android:label="@string/inCallLabel"
31 android:supportsRtl="true">
32
Chiao Chenga44c5912013-07-15 14:54:27 -070033 <!-- Main in-call UI activity. This is never launched directly
34 from outside the phone app; instead, it's either launched by
35 the OutgoingCallBroadcaster (for outgoing calls), or as the
36 fullScreenIntent of a notification (for incoming calls.) -->
37 <activity android:name=".InCallActivity"
38 android:theme="@style/Theme.InCallScreen"
39 android:label="@string/inCallLabel"
40 android:excludeFromRecents="true"
41 android:launchMode="singleInstance"
42 android:screenOrientation="nosensor"
43 android:configChanges="keyboardHidden"
44 android:exported="false">
45 </activity>
46
Santos Cordon66b2c282013-07-19 17:14:06 -070047 <service android:name="CallHandlerService">
Santos Cordonb415e4d2013-07-12 14:17:55 -070048 <intent-filter>
Santos Cordon66b2c282013-07-19 17:14:06 -070049 <action android:name="com.android.services.telephony.common.ICallHandlerService" />
Santos Cordonb415e4d2013-07-12 14:17:55 -070050 </intent-filter>
51 </service>
52
Santos Cordon70304372013-08-09 13:21:47 -070053 <!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->
54 <receiver android:name="InCallApp$NotificationBroadcastReceiver" exported="false">
55 <intent-filter>
56 <action android:name="com.android.incallui.ACTION_HANG_UP_ONGOING_CALL" />
57 </intent-filter>
58 </receiver>
59
Santos Cordonb415e4d2013-07-12 14:17:55 -070060 </application>
61</manifest>