diff options
| author | 2018-11-13 05:46:26 +0000 | |
|---|---|---|
| committer | 2018-11-13 05:46:26 +0000 | |
| commit | b608ad49f95c86ca1605078786e4320b47b0d917 (patch) | |
| tree | 17af74330ce6dc20af0277db28a9ede26bc6dc09 | |
| parent | f23baceca00fd2f0c6932e5a1da24fd89c5e8e21 (diff) | |
| parent | 1bf4e92c50e80a663711b6f71dcd58cb7ee88640 (diff) | |
Merge "Define new intent ACTION_LINE1_NUMBER_ERROR_DETECTED"
| -rw-r--r-- | telephony/java/com/android/internal/telephony/TelephonyIntents.java | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/telephony/java/com/android/internal/telephony/TelephonyIntents.java b/telephony/java/com/android/internal/telephony/TelephonyIntents.java index 5ecb43ebf112..2a648bd8b252 100644 --- a/telephony/java/com/android/internal/telephony/TelephonyIntents.java +++ b/telephony/java/com/android/internal/telephony/TelephonyIntents.java @@ -480,9 +480,9 @@ public class TelephonyIntents { public static final String EXTRA_PCO_VALUE_KEY = "pcoValue"; public static final String EXTRA_DEFAULT_NETWORK_AVAILABLE_KEY = "defaultNetworkAvailable"; - /** + /** * Broadcast action to trigger CI OMA-DM Session. - */ + */ public static final String ACTION_REQUEST_OMADM_CONFIGURATION_UPDATE = "com.android.omadm.service.CONFIGURATION_UPDATE"; @@ -491,4 +491,14 @@ public class TelephonyIntents { */ public static final String ACTION_CARRIER_CERTIFICATE_DOWNLOAD = "com.android.internal.telephony.ACTION_CARRIER_CERTIFICATE_DOWNLOAD"; + + /** + * Broadcast action to indicate an error related to Line1Number has been detected. + * + * Requires the READ_PRIVILEGED_PHONE_STATE permission. + * + * @hide + */ + public static final String ACTION_LINE1_NUMBER_ERROR_DETECTED = + "com.android.internal.telephony.ACTION_LINE1_NUMBER_ERROR_DETECTED"; } |