diff options
| author | 2024-06-11 06:38:30 +0000 | |
|---|---|---|
| committer | 2024-06-11 06:38:30 +0000 | |
| commit | 8cadc83b4c6166581bd3de07eb4c3da18383e7cc (patch) | |
| tree | cc558b8a3bfd1731c62a976537583eca43290bcb | |
| parent | 50d756f7cf98dd7bc1f066077137d36f146b1902 (diff) | |
| parent | cf2e057f08fa58ca6c0ac62b6c4e6405a4a1436a (diff) | |
Merge "Add EXTRA_USE_EMERGENCY_ROUTING to PhoneConstants" into 24D1-dev
| -rw-r--r-- | telephony/java/com/android/internal/telephony/PhoneConstants.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/PhoneConstants.java b/telephony/java/com/android/internal/telephony/PhoneConstants.java index a9ebd5c2d7cd..2158f3dbc08f 100644 --- a/telephony/java/com/android/internal/telephony/PhoneConstants.java +++ b/telephony/java/com/android/internal/telephony/PhoneConstants.java @@ -252,4 +252,10 @@ public class PhoneConstants { /** The key to specify the emergency service category */ public static final String EXTRA_EMERGENCY_SERVICE_CATEGORY = "emergency_service_category"; + + /** The key to specify the alternate emergency URNs */ + public static final String EXTRA_EMERGENCY_URNS = "emergency_urns"; + + /** The key to specify whether or not to use emergency routing */ + public static final String EXTRA_USE_EMERGENCY_ROUTING = "use_emergency_routing"; } |