1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2017 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<manifest xmlns:android="http://schemas.android.com/apk/res/android" 17 package="com.android.dialer.voicemail.settings"> 18 19 <application> 20 <!-- Causes the "Voicemail" item under "Calls" setting to be hidden. The voicemail module will 21 be handling the settings. Has no effect before OC where dialer cannot provide voicemail 22 settings --> 23 <meta-data android:name="android.telephony.HIDE_VOICEMAIL_SETTINGS_MENU" android:value="true"/> 24 25 <activity 26 android:exported="false" 27 android:label="@string/voicemail_change_pin_preference_title" 28 android:name="com.android.dialer.voicemail.settings.VoicemailChangePinActivity" 29 android:parentActivityName="com.android.dialer.app.settings.DialerSettingsActivity" 30 android:theme="@style/SettingsStyle" 31 android:windowSoftInputMode="stateVisible|adjustResize"> 32 <intent-filter> 33 <action android:name="com.android.dialer.action.CHANGE_PIN"/> 34 <category android:name="android.intent.category.DEFAULT"/> 35 </intent-filter> 36 </activity> 37 <activity 38 android:name=".RecordVoicemailGreetingActivity" 39 android:configChanges="orientation|screenSize|keyboardHidden" 40 android:label="@string/voicemail_change_greeting_preference_title" 41 android:parentActivityName="com.android.dialer.app.settings.DialerSettingsActivity" 42 android:theme="@style/SettingsStyle"> 43 </activity> 44 <activity 45 android:name=".CurrentVoicemailGreetingActivity" 46 android:label="@string/voicemail_change_greeting_preference_title" 47 android:parentActivityName="com.android.dialer.app.settings.DialerSettingsActivity" 48 android:exported="true"> 49 <!-- TODO(a bug): delete android:exported="true" closer to submitting --> 50 </activity> 51 </application> 52 53</manifest> 54