1<!-- Copyright (C) 2016 The Android Open Source Project 2 3 Licensed under the Apache License, Version 2.0 (the "License"); 4 you may not use this file except in compliance with the License. 5 You may obtain a copy of the License at 6 7 http://www.apache.org/licenses/LICENSE-2.0 8 9 Unless required by applicable law or agreed to in writing, software 10 distributed under the License is distributed on an "AS IS" BASIS, 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 See the License for the specific language governing permissions and 13 limitations under the License. 14--> 15 16<!-- This manifest file contains activites that are subclasses by 17 Google Dialer. TODO: Need to stop subclassing activities and move this 18 back into the main manifest file. --> 19<manifest xmlns:android="http://schemas.android.com/apk/res/android" 20 package="com.android.dialer.app"> 21 22 <application> 23 24 <activity 25 android:exported="false" 26 android:label="@string/dialer_settings_label" 27 android:name="com.android.dialer.app.settings.DialerSettingsActivity" 28 android:parentActivityName="com.android.dialer.app.DialtactsActivity" 29 android:theme="@style/SettingsStyle"> 30 </activity> 31 32 <!-- The entrance point for Phone UI. 33 stateAlwaysHidden is set to suppress keyboard show up on 34 dialpad screen. --> 35 <activity 36 android:clearTaskOnLaunch="true" 37 android:directBootAware="true" 38 android:label="@string/launcherActivityLabel" 39 android:launchMode="singleTask" 40 android:name="com.android.dialer.app.DialtactsActivity" 41 android:resizeableActivity="true" 42 android:theme="@style/DialtactsActivityTheme" 43 android:windowSoftInputMode="stateAlwaysHidden|adjustNothing"> 44 <intent-filter> 45 <action android:name="android.intent.action.DIAL"/> 46 47 <category android:name="android.intent.category.DEFAULT"/> 48 <category android:name="android.intent.category.BROWSABLE"/> 49 50 <data android:mimeType="vnd.android.cursor.item/phone"/> 51 <data android:mimeType="vnd.android.cursor.item/person"/> 52 </intent-filter> 53 <intent-filter> 54 <action android:name="android.intent.action.DIAL"/> 55 56 <category android:name="android.intent.category.DEFAULT"/> 57 <category android:name="android.intent.category.BROWSABLE"/> 58 59 <data android:scheme="voicemail"/> 60 </intent-filter> 61 <intent-filter> 62 <action android:name="android.intent.action.DIAL"/> 63 <category android:name="android.intent.category.DEFAULT"/> 64 </intent-filter> 65 <intent-filter> 66 <action android:name="android.intent.action.MAIN"/> 67 68 <category android:name="android.intent.category.DEFAULT"/> 69 <category android:name="android.intent.category.LAUNCHER"/> 70 <category android:name="android.intent.category.BROWSABLE"/> 71 </intent-filter> 72 <intent-filter> 73 <action android:name="android.intent.action.VIEW"/> 74 <action android:name="android.intent.action.DIAL"/> 75 76 <category android:name="android.intent.category.DEFAULT"/> 77 <category android:name="android.intent.category.BROWSABLE"/> 78 79 <data android:scheme="tel"/> 80 </intent-filter> 81 <intent-filter> 82 <action android:name="android.intent.action.VIEW"/> 83 84 <category android:name="android.intent.category.DEFAULT"/> 85 <category android:name="android.intent.category.BROWSABLE"/> 86 87 <data android:mimeType="vnd.android.cursor.dir/calls"/> 88 </intent-filter> 89 <intent-filter> 90 <action android:name="android.intent.action.CALL_BUTTON"/> 91 92 <category android:name="android.intent.category.DEFAULT"/> 93 <category android:name="android.intent.category.BROWSABLE"/> 94 </intent-filter> 95 <!-- This was never intended to be public, but is here for backward 96 compatibility. Use Intent.ACTION_DIAL instead. --> 97 <intent-filter> 98 <action android:name="com.android.phone.action.TOUCH_DIALER"/> 99 100 <category android:name="android.intent.category.DEFAULT"/> 101 <category android:name="android.intent.category.TAB"/> 102 </intent-filter> 103 <intent-filter android:label="@string/callHistoryIconLabel"> 104 <action android:name="com.android.phone.action.RECENT_CALLS"/> 105 106 <category android:name="android.intent.category.DEFAULT"/> 107 <category android:name="android.intent.category.TAB"/> 108 </intent-filter> 109 110 <meta-data 111 android:name="com.android.keyguard.layout" 112 android:resource="@layout/keyguard_preview"/> 113 </activity> 114 115 <activity-alias 116 android:exported="true" 117 android:name="com.android.dialer.DialtactsActivity" 118 android:targetActivity="com.android.dialer.app.DialtactsActivity"/> 119 120 </application> 121 122</manifest> 123