blob: 4edddf94903dcf9b38923d70dd149d38bbc6f1e8 [file] [log] [blame]
Chiao Cheng94b10b52012-08-17 16:59:12 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2006 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"
Jay Shrauner57ccf012014-03-21 14:12:36 -070018 package="com.android.dialer"
Anthony Leef88d4702015-08-12 14:35:25 -070019 coreApp="true"
Nancy Chendf458dc2015-11-17 10:33:19 -080020 android:versionCode="20308"
21 android:versionName="2.3.08">
Chiao Cheng94b10b52012-08-17 16:59:12 -070022
Yorke Leee772cc32015-06-25 10:19:09 -070023 <uses-sdk
Jay Shraunerf61a9a82015-07-14 09:24:06 -070024 android:minSdkVersion="23"
25 android:targetSdkVersion="23" />
Yorke Leee772cc32015-06-25 10:19:09 -070026
Yorke Lee72d59612014-07-18 09:08:51 -070027 <uses-permission android:name="android.permission.CALL_PHONE" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070028 <uses-permission android:name="android.permission.READ_CONTACTS" />
29 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
30 <uses-permission android:name="android.permission.READ_CALL_LOG" />
31 <uses-permission android:name="android.permission.WRITE_CALL_LOG" />
Yorke Lee7d661342013-11-07 12:11:13 -080032 <uses-permission android:name="android.permission.READ_PROFILE" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070033 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
34 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
35 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
36 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070037 <uses-permission android:name="android.permission.INTERNET" />
Yorke Lee1197d332013-08-14 08:55:53 -070038 <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"/>
Chiao Cheng94b10b52012-08-17 16:59:12 -070039 <uses-permission android:name="android.permission.NFC" />
40 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
41 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
42 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070043 <uses-permission android:name="android.permission.WAKE_LOCK" />
44 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
45 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
46 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
47 <uses-permission android:name="android.permission.VIBRATE" />
48 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Tyler Gunn54268512014-08-18 16:24:05 -070049 <uses-permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070050 <uses-permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL" />
Yorke Lee2cb39a62014-07-18 16:36:21 -070051 <uses-permission android:name="com.android.voicemail.permission.WRITE_VOICEMAIL" />
52 <uses-permission android:name="com.android.voicemail.permission.READ_VOICEMAIL" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070053 <uses-permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK" />
54 <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
Chiao Cheng94b10b52012-08-17 16:59:12 -070055 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Evan Charltonb6b31722014-09-15 09:25:39 -070056 <uses-permission android:name="android.permission.BROADCAST_STICKY" />
Andrew Leed04f11f2015-02-12 12:16:07 -080057 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
Christine Chen28eb2f12013-10-07 11:44:06 -070058 <!-- This tells the activity manager to not delay any of our activity
59 start requests, even if they happen immediately after the user
60 presses home. -->
61 <uses-permission android:name="android.permission.STOP_APP_SWITCHES" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070062
63 <application
Alon Albert05de7012013-08-22 11:26:28 -070064 android:name="DialerApplication"
Chiao Cheng94b10b52012-08-17 16:59:12 -070065 android:label="@string/applicationLabel"
Chiao Cheng437afcc2012-11-09 15:18:21 -080066 android:icon="@mipmap/ic_launcher_phone"
Fabrice Di Meglioc341db02013-04-03 21:11:37 -070067 android:hardwareAccelerated="true"
Christine Chen9c1e0652013-05-23 15:40:19 -070068 android:supportsRtl="true"
Alex Klyubin45c14892015-04-02 10:41:18 -070069 android:backupAgent='com.android.dialer.DialerBackupAgent'
Jeff Sharkey21421d82015-11-18 15:35:13 -070070 android:usesCleartextTraffic="false"
71 android:forceDeviceEncrypted="true"
72 android:encryptionAware="true">
Christine Chen9c1e0652013-05-23 15:40:19 -070073
74 <meta-data android:name="com.google.android.backup.api_key"
75 android:value="AEdPqrEAAAAIBXgtCEKQ6W0PXVnW-ZVia2KmlV2AxsTw3GjAeQ" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070076
Chiao Cheng94b10b52012-08-17 16:59:12 -070077 <!-- The entrance point for Phone UI.
78 stateAlwaysHidden is set to suppress keyboard show up on
79 dialpad screen. -->
80 <activity android:name=".DialtactsActivity"
Jay Shraunerbf8b4b92014-09-03 15:12:16 -070081 android:label="@string/launcherActivityLabel"
Yorke Leebe10b412014-04-23 19:14:12 -070082 android:theme="@style/DialtactsActivityTheme"
Chiao Cheng94b10b52012-08-17 16:59:12 -070083 android:launchMode="singleTask"
84 android:clearTaskOnLaunch="true"
85 android:icon="@mipmap/ic_launcher_phone"
Chiao Cheng94b10b52012-08-17 16:59:12 -070086 android:windowSoftInputMode="stateAlwaysHidden|adjustNothing">
87 <intent-filter>
88 <action android:name="android.intent.action.DIAL" />
89 <category android:name="android.intent.category.DEFAULT" />
90 <category android:name="android.intent.category.BROWSABLE" />
91 <data android:mimeType="vnd.android.cursor.item/phone" />
92 <data android:mimeType="vnd.android.cursor.item/person" />
93 </intent-filter>
94 <intent-filter>
95 <action android:name="android.intent.action.DIAL" />
96 <category android:name="android.intent.category.DEFAULT" />
97 <category android:name="android.intent.category.BROWSABLE" />
98 <data android:scheme="voicemail" />
99 </intent-filter>
100 <intent-filter>
101 <action android:name="android.intent.action.DIAL" />
102 <category android:name="android.intent.category.DEFAULT" />
103 </intent-filter>
104 <intent-filter>
105 <action android:name="android.intent.action.MAIN" />
106 <category android:name="android.intent.category.DEFAULT" />
107 <category android:name="android.intent.category.LAUNCHER" />
108 <category android:name="android.intent.category.BROWSABLE" />
109 </intent-filter>
110 <intent-filter>
111 <action android:name="android.intent.action.VIEW" />
112 <action android:name="android.intent.action.DIAL" />
113 <category android:name="android.intent.category.DEFAULT" />
114 <category android:name="android.intent.category.BROWSABLE" />
115 <data android:scheme="tel" />
116 </intent-filter>
117 <intent-filter>
Nancy Chen019713e2015-07-06 18:25:24 -0700118 <action android:name="android.intent.action.VIEW" />
119 <category android:name="android.intent.category.DEFAULT" />
120 <category android:name="android.intent.category.BROWSABLE" />
121 <data android:mimeType="vnd.android.cursor.dir/calls" />
122 </intent-filter>
123 <intent-filter>
Chiao Cheng94b10b52012-08-17 16:59:12 -0700124 <action android:name="android.intent.action.CALL_BUTTON" />
125 <category android:name="android.intent.category.DEFAULT" />
126 <category android:name="android.intent.category.BROWSABLE" />
127 </intent-filter>
128 <!-- This was never intended to be public, but is here for backward
129 compatibility. Use Intent.ACTION_DIAL instead. -->
130 <intent-filter>
131 <action android:name="com.android.phone.action.TOUCH_DIALER" />
132 <category android:name="android.intent.category.DEFAULT" />
133 <category android:name="android.intent.category.TAB" />
134 </intent-filter>
Andrew Lee4de59fb2015-08-13 15:20:08 -0700135 <intent-filter android:label="@string/callHistoryIconLabel">
Chiao Cheng94b10b52012-08-17 16:59:12 -0700136 <action android:name="com.android.phone.action.RECENT_CALLS" />
137 <category android:name="android.intent.category.DEFAULT" />
138 <category android:name="android.intent.category.TAB" />
139 </intent-filter>
Jorim Jaggida1da5d2014-07-25 22:13:24 +0200140 <meta-data
141 android:name="com.android.keyguard.layout"
142 android:resource="@layout/keyguard_preview" />
Chiao Cheng94b10b52012-08-17 16:59:12 -0700143 </activity>
144
Yorke Leeaf6f1952014-07-14 19:13:16 -0700145 <activity android:name="com.android.dialer.settings.DialerSettingsActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700146 android:label="@string/dialer_settings_label"
147 android:parentActivityName="com.android.dialer.DialtactsActivity"
148 android:theme="@style/SettingsStyle"
149 android:exported="false">
Yorke Leeaf6f1952014-07-14 19:13:16 -0700150 </activity>
151
Andrew Lee91cd89c2015-10-28 17:47:42 -0700152 <activity android:name="com.android.dialer.filterednumber.BlockedNumbersSettingsActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700153 android:label="@string/manage_blocked_numbers_label"
Anne Ronge78b54c2015-09-28 11:18:42 -0700154 android:parentActivityName="com.android.dialer.settings.DialerSettingsActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700155 android:theme="@style/ManageBlockedNumbersStyle"
156 android:exported="false">
Anne Ronge78b54c2015-09-28 11:18:42 -0700157 </activity>
158
Yorke Leec3766332013-07-31 11:13:16 -0700159 <activity android:name="com.android.dialer.calllog.CallLogActivity"
160 android:label="@string/call_log_activity_title"
Yorke Lee86e21f72014-04-02 16:49:38 -0700161 android:theme="@style/DialtactsThemeWithoutActionBarOverlay"
Yorke Leec3766332013-07-31 11:13:16 -0700162 android:icon="@mipmap/ic_launcher_phone">
Yorke Leedfb2eee2013-06-26 18:24:32 -0700163 </activity>
164
Chiao Cheng94b10b52012-08-17 16:59:12 -0700165 <activity android:name="com.android.dialer.CallDetailActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700166 android:label="@string/callDetailTitle"
167 android:theme="@style/CallDetailActivityTheme"
168 android:icon="@mipmap/ic_launcher_phone">
Chiao Cheng94b10b52012-08-17 16:59:12 -0700169 <intent-filter>
170 <action android:name="android.intent.action.VIEW"/>
171 <category android:name="android.intent.category.DEFAULT"/>
172 <data android:mimeType="vnd.android.cursor.item/calls"/>
173 </intent-filter>
174 </activity>
175
176 <activity android:name="com.android.contacts.common.test.FragmentTestActivity">
177 <intent-filter>
178 <category android:name="android.intent.category.TEST"/>
179 </intent-filter>
180 </activity>
181
Tyler Gunn476bd262015-08-10 10:03:37 -0700182 <activity android:name="com.android.contacts.common.dialog.CallSubjectDialog"
183 android:theme="@style/Theme.CallSubjectDialogTheme"
184 android:windowSoftInputMode="stateVisible|adjustResize">
Tyler Gunnc72f4192015-08-05 14:34:28 -0700185 <intent-filter>
186 <action android:name="android.intent.action.VIEW"/>
187 </intent-filter>
188 </activity>
189
Chiao Cheng94b10b52012-08-17 16:59:12 -0700190 <!-- Backwards compatibility: "Phone" from Gingerbread and earlier -->
191 <activity-alias android:name="DialtactsActivity"
192 android:targetActivity=".DialtactsActivity"
193 android:exported="true"
194 />
195
196 <!-- Backwards compatibility: "Call log" from Gingerbread and earlier -->
197 <activity-alias android:name="RecentCallsListActivity"
198 android:targetActivity=".DialtactsActivity"
199 android:exported="true"
200 />
201
202 <!-- Backwards compatibility: "Call log" from ICS -->
203 <activity-alias android:name=".activities.CallLogActivity"
204 android:targetActivity=".DialtactsActivity"
205 android:exported="true"
206 />
207
Chiao Chenge1d64772012-10-29 18:32:25 -0700208 <!-- Used to filter contacts list by account -->
209 <activity
Chiao Cheng82d544d2012-11-30 13:32:24 -0800210 android:name="com.android.contacts.common.list.AccountFilterActivity"
Chiao Chenge1d64772012-10-29 18:32:25 -0700211 android:label="@string/activity_title_contacts_filter"
212 android:theme="@style/ContactListFilterTheme"/>
213
214 <!-- Used to select display and sync groups -->
215 <activity
Chiao Cheng82d544d2012-11-30 13:32:24 -0800216 android:name="com.android.contacts.common.list.CustomContactListFilterActivity"
Chiao Chenge1d64772012-10-29 18:32:25 -0700217 android:label="@string/custom_list_filter"
218 android:theme="@style/ContactListFilterTheme"/>
219
Brian Attwellbd53eb42015-05-11 17:18:07 -0700220 <activity
221 android:name="com.android.contacts.common.activity.RequestImportVCardPermissionsActivity"
222 android:label="@string/launcherActivityLabel"
223 android:theme="@style/BackgroundOnlyTheme"
224 android:exported="false"/>
225
Chiao Cheng8378c572012-12-03 17:17:52 -0800226 <!-- vCard related -->
227 <activity android:name="com.android.contacts.common.vcard.ImportVCardActivity"
228 android:configChanges="orientation|screenSize|keyboardHidden"
229 android:theme="@style/BackgroundOnlyTheme">
Chiao Cheng8378c572012-12-03 17:17:52 -0800230 </activity>
231
232 <activity android:name="com.android.contacts.common.vcard.NfcImportVCardActivity"
233 android:configChanges="orientation|screenSize|keyboardHidden"
234 android:theme="@style/BackgroundOnlyTheme">
Chiao Cheng8378c572012-12-03 17:17:52 -0800235 </activity>
236
237 <activity android:name="com.android.contacts.common.vcard.CancelActivity"
238 android:theme="@style/BackgroundOnlyTheme"/>
239
240 <activity android:name="com.android.contacts.common.vcard.SelectAccountActivity"
241 android:theme="@style/BackgroundOnlyTheme"/>
242
243 <activity android:name="com.android.contacts.common.vcard.ExportVCardActivity"
244 android:theme="@style/BackgroundOnlyTheme"/>
245
246 <service
247 android:name="com.android.contacts.common.vcard.VCardService"
248 android:exported="false"/>
249 <!-- end vCard related -->
250
Jay Shrauner6e826d72015-11-17 14:41:58 -0800251 <receiver android:name=".calllog.CallLogReceiver">
Chiao Cheng94b10b52012-08-17 16:59:12 -0700252 <intent-filter>
253 <action android:name="android.intent.action.NEW_VOICEMAIL" />
254 <data
255 android:scheme="content"
256 android:host="com.android.voicemail"
257 android:mimeType="vnd.android.cursor.item/voicemail"
258 />
259 </intent-filter>
260 <intent-filter android:priority="100">
261 <action android:name="android.intent.action.BOOT_COMPLETED"/>
262 </intent-filter>
263 </receiver>
264
Yorke Lee1197d332013-08-14 08:55:53 -0700265 <receiver android:name=".interactions.UndemoteOutgoingCallReceiver">
266 <intent-filter>
267 <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
268 </intent-filter>
269 </receiver>
270
Chiao Cheng94b10b52012-08-17 16:59:12 -0700271 <service
272 android:name=".calllog.CallLogNotificationsService"
273 android:exported="false"
274 />
Yorke Lee81e0da42013-01-30 14:56:19 -0800275
276 <!-- Service to update a contact -->
277 <service
278 android:name=".contact.ContactUpdateService"
279 android:exported="false" />
Santos Cordonc286ae22013-09-03 15:58:07 -0700280
Yorke Lee294dadd2014-06-13 14:54:40 -0700281 <!-- Broadcast receiver that passively listens to location updates -->
282 <receiver android:name="com.android.contacts.common.location.CountryDetector$LocationChangedReceiver"/>
283
284 <!-- IntentService to update the user's current country -->
285 <service android:name="com.android.contacts.common.location.UpdateCountryService"
286 android:exported="false"/>
287
Santos Cordonc286ae22013-09-03 15:58:07 -0700288 <!-- Main in-call UI activity. This is never launched directly
289 from outside the phone app; instead, it's either launched by
290 the OutgoingCallBroadcaster (for outgoing calls), or as the
291 fullScreenIntent of a notification (for incoming calls.) -->
292 <activity android:name="com.android.incallui.InCallActivity"
293 android:theme="@style/Theme.InCallScreen"
Santos Cordone8c54f92013-09-04 15:33:51 -0700294 android:label="@string/phoneAppLabel"
Santos Cordonc286ae22013-09-03 15:58:07 -0700295 android:excludeFromRecents="true"
296 android:launchMode="singleInstance"
Santos Cordonc286ae22013-09-03 15:58:07 -0700297 android:configChanges="keyboardHidden"
298 android:exported="false"
Tyler Gunn838e9902014-08-22 07:44:59 -0700299 android:screenOrientation="nosensor" >
Santos Cordonc286ae22013-09-03 15:58:07 -0700300 </activity>
301
Santos Cordonc286ae22013-09-03 15:58:07 -0700302 <!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->
Yorke Leed9602d02015-05-19 16:36:22 -0700303 <receiver android:name="com.android.incallui.NotificationBroadcastReceiver"
304 android:exported="false" />
Santos Cordonc286ae22013-09-03 15:58:07 -0700305
Santos Cordon77cecf22014-06-26 14:50:10 -0700306 <service android:name="com.android.incallui.InCallServiceImpl"
Tyler Gunn54268512014-08-18 16:24:05 -0700307 android:permission="android.permission.BIND_INCALL_SERVICE" >
Santos Cordone9117792015-06-23 15:14:03 -0700308 <meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" android:value="true" />
Santos Cordon77cecf22014-06-26 14:50:10 -0700309 <intent-filter>
Tyler Gunn9dc924c2014-09-12 09:33:50 -0700310 <action android:name="android.telecom.InCallService"/>
Santos Cordon77cecf22014-06-26 14:50:10 -0700311 </intent-filter>
312 </service>
Anne Rong6fcdcc12015-08-10 17:45:55 -0700313
314 <provider
315 android:name=".database.FilteredNumberProvider"
Anne Rong7e488f52015-08-19 18:32:08 -0700316 android:authorities="com.android.dialer.database.filterednumberprovider"
Anne Rong6fcdcc12015-08-10 17:45:55 -0700317 android:exported="false"
318 android:multiprocess="false"
319 />
Chiao Cheng94b10b52012-08-17 16:59:12 -0700320 </application>
321</manifest>