diff options
| author | 2022-04-08 00:46:32 +0000 | |
|---|---|---|
| committer | 2022-04-08 00:46:32 +0000 | |
| commit | 5d8e5fe5d3d93f098a444b7a6d8e05c9d281052c (patch) | |
| tree | 6e28ee738d4c21376b4c5c6b9ec7eef23721fd2f | |
| parent | b5a7c1d7f28751d0d1853bd7262afd6f9a1dce34 (diff) | |
| parent | d79acc64a7a15d6ce8f26841e894f4624893d685 (diff) | |
Merge changes from topic "revert-17034757-VoWifi_Emergency_Notification-NYDZQSHARD" into tm-mainline-prod
* changes:
[automerge] Revert "VoWifi notification for emergency calls" 2p: 501b640ae0
Revert "VoWifi notification for emergency calls"
| -rw-r--r-- | core/res/res/values/strings.xml | 4 | ||||
| -rw-r--r-- | telephony/java/com/android/internal/telephony/TelephonyIntents.java | 20 |
2 files changed, 2 insertions, 22 deletions
diff --git a/core/res/res/values/strings.xml b/core/res/res/values/strings.xml index d5fc14eeb56e..8aed76f0a839 100644 --- a/core/res/res/values/strings.xml +++ b/core/res/res/values/strings.xml @@ -234,9 +234,9 @@ <!-- Displayed to tell the user that they should switch their network preference. --> <string name="NetworkPreferenceSwitchSummary">Try changing preferred network. Tap to change.</string> <!-- Displayed to tell the user that emergency calls might not be available. --> - <string name="EmergencyCallWarningTitle">Emergency calls may be unavailable</string> + <string name="EmergencyCallWarningTitle">Emergency calling unavailable</string> <!-- Displayed to tell the user that emergency calls might not be available. --> - <string name="EmergencyCallWarningSummary"><xliff:g id="spn" example="Operator">%s</xliff:g> doesn\'t support emergency calls over Wi-Fi. Tap for details.</string> + <string name="EmergencyCallWarningSummary">Can\u2019t make emergency calls over Wi\u2011Fi</string> <!-- Telephony notification channel name for a channel containing network alert notifications. --> <string name="notification_channel_network_alert">Alerts</string> diff --git a/telephony/java/com/android/internal/telephony/TelephonyIntents.java b/telephony/java/com/android/internal/telephony/TelephonyIntents.java index 546d2ce0e115..b905212a9100 100644 --- a/telephony/java/com/android/internal/telephony/TelephonyIntents.java +++ b/telephony/java/com/android/internal/telephony/TelephonyIntents.java @@ -424,24 +424,4 @@ public class TelephonyIntents { */ @Deprecated public static final String EXTRA_DEFAULT_NETWORK_AVAILABLE = "defaultNetworkAvailable"; - - /** - * <p>Broadcast sent to show Emergency notification due to Voice Over Wifi availability - * - * <p class="note"> - * You can <em>not</em> receive this through components declared - * in manifests, only by explicitly registering for it with - * {@link android.content.Context#registerReceiver(android.content.BroadcastReceiver, - * android.content.IntentFilter) Context.registerReceiver()}. - * - * <p class="note"> - * Requires no permission. - * - * <p class="note">This is a protected intent that can only be sent - * by the system. - * - * @hide - */ - public static final String ACTION_VOWIFI_ENABLED - = "com.android.internal.telephony.ACTION_VOWIFI_ENABLED"; } |