diff options
Diffstat (limited to 'telephony/java/android/provider/Telephony.java')
-rw-r--r-- | telephony/java/android/provider/Telephony.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/telephony/java/android/provider/Telephony.java b/telephony/java/android/provider/Telephony.java index e633053800bc..8c4572474e6b 100644 --- a/telephony/java/android/provider/Telephony.java +++ b/telephony/java/android/provider/Telephony.java @@ -1102,6 +1102,16 @@ public final class Telephony { "android.provider.Telephony.MMS_DOWNLOADED"; /** + * Broadcast Action: A debug code has been entered in the dialer. These "secret codes" + * are used to activate developer menus by dialing certain codes. And they are of the + * form {@code *#*#<code>#*#*}. The intent will have the data URI: + * {@code android_secret_code://<code>}. + */ + @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION) + public static final String SECRET_CODE_ACTION = + "android.provider.Telephony.SECRET_CODE"; + + /** * Broadcast action: When the default SMS package changes, * the previous default SMS package and the new default SMS * package are sent this broadcast to notify them of the change. |