diff options
| author | 2017-06-09 21:06:48 +0000 | |
|---|---|---|
| committer | 2017-06-09 21:06:48 +0000 | |
| commit | 5d9f5613c35d34923e24439e65a576fef13aada7 (patch) | |
| tree | 50469bbc331c9a5cb613e2efd3565db080953abf | |
| parent | 51fb4488f50425708da080eada23abf8f5791b9e (diff) | |
| parent | fce339c49cffc947d667bc40659e585b1ce7a68c (diff) | |
Merge "add an extra for rebroadcast of SIM_STATE_CHANGED" into oc-dev am: cdec393aa3
am: fce339c49c
Change-Id: I1b2478820fbc282aa0448d1e1966f0cf81a2b207
| -rw-r--r-- | telephony/java/com/android/internal/telephony/TelephonyIntents.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/TelephonyIntents.java b/telephony/java/com/android/internal/telephony/TelephonyIntents.java index 32d3f2705d27..034389088269 100644 --- a/telephony/java/com/android/internal/telephony/TelephonyIntents.java +++ b/telephony/java/com/android/internal/telephony/TelephonyIntents.java @@ -208,6 +208,9 @@ public class TelephonyIntents { * <dt>{@code PUK}</dt><dd>locked on PUK1</dd> * <dt>{@code NETWORK}</dt><dd>locked on network personalization</dd> * </dl> + * <dt>rebroadcastOnUnlock</dt> + * <dd>A boolean indicates a rebroadcast on unlock. optional extra, defaults to {@code false} + * if not specified </dd> * </dl> * * <p class="note"> @@ -219,6 +222,8 @@ public class TelephonyIntents { public static final String ACTION_SIM_STATE_CHANGED = Intent.ACTION_SIM_STATE_CHANGED; + public static final String EXTRA_REBROADCAST_ON_UNLOCK= "rebroadcastOnUnlock"; + /** * Broadcast Action: The time was set by the carrier (typically by the NITZ string). * This is a sticky broadcast. |