summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2014-10-24 14:37:17 -0700
committerAndrew Lee <anwlee@google.com>2014-10-24 16:27:20 -0700
commit59a1f81461ccdf5afc5ccb51d0a69c7b42b43d75 (patch)
tree0026390621390f79d4dbc5a6b49e80ac7e4f2e5b /AndroidManifest.xml
parentb6bf411ab51829c0fe3501942a8fe5f81db6426e (diff)
downloadandroid_packages_services_Telephony-59a1f81461ccdf5afc5ccb51d0a69c7b42b43d75.tar.gz
android_packages_services_Telephony-59a1f81461ccdf5afc5ccb51d0a69c7b42b43d75.tar.bz2
android_packages_services_Telephony-59a1f81461ccdf5afc5ccb51d0a69c7b42b43d75.zip
Move CHANGE_PHONE_ACCOUNTS filter to Phone Account Settings.
Before the intent opened call settings, but we actually want it to open up phone account settings now. Bug: 16014284 Change-Id: I462812eb33d8e03a7e32dea4189130b8097d0a75
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index d1f8968ff..73113d248 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -430,7 +430,6 @@
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.MAIN" />
<action android:name="android.telecom.action.SHOW_CALL_SETTINGS" />
- <action android:name="android.telecom.action.CHANGE_PHONE_ACCOUNTS" />
<action android:name="com.android.phone.CallFeaturesSetting.ADD_VOICEMAIL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
@@ -537,6 +536,10 @@
<activity android:name="com.android.phone.settings.PhoneAccountSettingsActivity"
android:label="@string/phone_accounts"
android:theme="@style/DialerSettingsLight">
+ <intent-filter>
+ <action android:name="android.telecom.action.CHANGE_PHONE_ACCOUNTS" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
</activity>
<!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->