Merge "Added the extra to report last known country"
This commit is contained in:
committed by
Android (Google) Code Review
commit
543deca141
@@ -45374,6 +45374,7 @@ package android.telephony {
|
||||
field public static final String EXTRA_HIDE_PUBLIC_SETTINGS = "android.telephony.extra.HIDE_PUBLIC_SETTINGS";
|
||||
field @Deprecated public static final String EXTRA_INCOMING_NUMBER = "incoming_number";
|
||||
field public static final String EXTRA_IS_REFRESH = "android.telephony.extra.IS_REFRESH";
|
||||
field public static final String EXTRA_LAST_KNOWN_NETWORK_COUNTRY = "android.telephony.extra.LAST_KNOWN_NETWORK_COUNTRY";
|
||||
field public static final String EXTRA_LAUNCH_VOICEMAIL_SETTINGS_INTENT = "android.telephony.extra.LAUNCH_VOICEMAIL_SETTINGS_INTENT";
|
||||
field public static final String EXTRA_NETWORK_COUNTRY = "android.telephony.extra.NETWORK_COUNTRY";
|
||||
field public static final String EXTRA_NOTIFICATION_COUNT = "android.telephony.extra.NOTIFICATION_COUNT";
|
||||
|
||||
@@ -14894,7 +14894,10 @@ public class TelephonyManager {
|
||||
|
||||
/**
|
||||
* The extra used with an {@link #ACTION_NETWORK_COUNTRY_CHANGED} to specify the
|
||||
* the country code in ISO-3166-1 alpha-2 format.
|
||||
* the country code in ISO-3166-1 alpha-2 format. This is the same country code returned by
|
||||
* {@link #getNetworkCountryIso()}. This might be an empty string when the country code is not
|
||||
* available.
|
||||
*
|
||||
* <p class="note">
|
||||
* Retrieve with {@link android.content.Intent#getStringExtra(String)}.
|
||||
*/
|
||||
@@ -14903,11 +14906,11 @@ public class TelephonyManager {
|
||||
|
||||
/**
|
||||
* The extra used with an {@link #ACTION_NETWORK_COUNTRY_CHANGED} to specify the
|
||||
* last known the country code in ISO-3166-1 alpha-2 format.
|
||||
* last known the country code in ISO-3166-1 alpha-2 format. This might be an empty string when
|
||||
* the country code was never available. The last known country code persists across reboot.
|
||||
*
|
||||
* <p class="note">
|
||||
* Retrieve with {@link android.content.Intent#getStringExtra(String)}.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public static final String EXTRA_LAST_KNOWN_NETWORK_COUNTRY =
|
||||
"android.telephony.extra.LAST_KNOWN_NETWORK_COUNTRY";
|
||||
|
||||
Reference in New Issue
Block a user