diff options
| author | 2017-02-23 01:55:24 +0000 | |
|---|---|---|
| committer | 2017-02-23 01:55:25 +0000 | |
| commit | 09c663a84c00eb7722a85d20918e734ba6383f79 (patch) | |
| tree | b6ba56da15f58078c0a68c8e0d32d1afa081d1c6 | |
| parent | ac9b2c4fab42f731901960f72a796cbee0712a2a (diff) | |
| parent | b80c879c910ef43b39831bc40056baaec2dca2f4 (diff) | |
Merge "renaming telephony internal hidden intents"
| -rw-r--r-- | packages/CarrierDefaultApp/AndroidManifest.xml | 2 | ||||
| -rw-r--r-- | telephony/java/com/android/internal/telephony/TelephonyIntents.java | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/CarrierDefaultApp/AndroidManifest.xml b/packages/CarrierDefaultApp/AndroidManifest.xml index e2080b08c4df..d9109202f916 100644 --- a/packages/CarrierDefaultApp/AndroidManifest.xml +++ b/packages/CarrierDefaultApp/AndroidManifest.xml @@ -31,7 +31,7 @@ <application android:label="@string/app_name" > <receiver android:name="com.android.carrierdefaultapp.CarrierDefaultBroadcastReceiver"> <intent-filter> - <action android:name="android.intent.action.CARRIER_SIGNAL_REDIRECTED" /> + <action android:name="com.android.internal.telephony.CARRIER_SIGNAL_REDIRECTED" /> </intent-filter> </receiver> <activity android:name="com.android.carrierdefaultapp.CaptivePortalLaunchActivity" diff --git a/telephony/java/com/android/internal/telephony/TelephonyIntents.java b/telephony/java/com/android/internal/telephony/TelephonyIntents.java index 0168874c5742..2387ba06c3f0 100644 --- a/telephony/java/com/android/internal/telephony/TelephonyIntents.java +++ b/telephony/java/com/android/internal/telephony/TelephonyIntents.java @@ -411,7 +411,7 @@ public class TelephonyIntents { * <p class="note">This is a protected intent that can only be sent by the system.</p> */ public static final String ACTION_CARRIER_SIGNAL_REDIRECTED = - "android.intent.action.CARRIER_SIGNAL_REDIRECTED"; + "com.android.internal.telephony.CARRIER_SIGNAL_REDIRECTED"; /** * <p>Broadcast Action: when data connections setup fails. * intended for sim/account status checks and only sent to the specified carrier app @@ -424,7 +424,7 @@ public class TelephonyIntents { * <p class="note">This is a protected intent that can only be sent by the system. </p> */ public static final String ACTION_CARRIER_SIGNAL_REQUEST_NETWORK_FAILED = - "android.intent.action.CARRIER_SIGNAL_REQUEST_NETWORK_FAILED"; + "com.android.internal.telephony.CARRIER_SIGNAL_REQUEST_NETWORK_FAILED"; /** * <p>Broadcast Action: when pco value is available. @@ -441,7 +441,7 @@ public class TelephonyIntents { * <p class="note">This is a protected intent that can only be sent by the system. </p> */ public static final String ACTION_CARRIER_SIGNAL_PCO_VALUE = - "android.intent.action.CARRIER_SIGNAL_PCO_VALUE"; + "com.android.internal.telephony.CARRIER_SIGNAL_PCO_VALUE"; // CARRIER_SIGNAL_ACTION extra keys public static final String EXTRA_REDIRECTION_URL_KEY = "redirectionUrl"; |