blob: cc0ffec15c4e266e6735a0793b2c903efadb8c59 [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
27 android:label="@string/inCallLabel"
28 android:supportsRtl="true">
29
Chiao Chenga44c5912013-07-15 14:54:27 -070030 <!-- Main in-call UI activity. This is never launched directly
31 from outside the phone app; instead, it's either launched by
32 the OutgoingCallBroadcaster (for outgoing calls), or as the
33 fullScreenIntent of a notification (for incoming calls.) -->
34 <activity android:name=".InCallActivity"
35 android:theme="@style/Theme.InCallScreen"
36 android:label="@string/inCallLabel"
37 android:excludeFromRecents="true"
38 android:launchMode="singleInstance"
39 android:screenOrientation="nosensor"
40 android:configChanges="keyboardHidden"
41 android:exported="false">
42 </activity>
43
Santos Cordon66b2c282013-07-19 17:14:06 -070044 <service android:name="CallHandlerService">
Santos Cordonb415e4d2013-07-12 14:17:55 -070045 <intent-filter>
Santos Cordon66b2c282013-07-19 17:14:06 -070046 <action android:name="com.android.services.telephony.common.ICallHandlerService" />
Santos Cordonb415e4d2013-07-12 14:17:55 -070047 </intent-filter>
48 </service>
49
50 </application>
51</manifest>