diff options
| author | 2024-05-27 21:22:08 +0000 | |
|---|---|---|
| committer | 2024-06-10 20:19:28 +0000 | |
| commit | cf2e057f08fa58ca6c0ac62b6c4e6405a4a1436a (patch) | |
| tree | 21a74f084a706418bfbbdb55d0e93c18f3eb8911 | |
| parent | 7608bcd7704555f49e5c03558835ffc09eceb607 (diff) | |
Add EXTRA_USE_EMERGENCY_ROUTING to PhoneConstants
Add EXTRA_USE_EMERGENCY_ROUTING key to specify whether or not to use emergency routing
Add EXTRA_EMERGENCY_URNS key to specify the alternate emergency URNs
Bug: 336759603
Test: build and manual test
Change-Id: I93f8924691067e1fa7377ac26b3d237a236169c7
| -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"; } |