Merge "Triggering notifications when dual CDMA SIM combinations are detected" into qt-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
b613fec2f8
@@ -1498,6 +1498,48 @@ public class TelephonyManager {
|
||||
*/
|
||||
public static final int EXTRA_DEFAULT_SUBSCRIPTION_SELECT_TYPE_ALL = 4;
|
||||
|
||||
/**
|
||||
* Integer intent extra to be used with {@link #ACTION_PRIMARY_SUBSCRIPTION_LIST_CHANGED}
|
||||
* to indicate if the SIM combination in DSDS has limitation or compatible issue.
|
||||
* e.g. two CDMA SIMs may disrupt each other's voice call in certain scenarios.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public static final String EXTRA_SIM_COMBINATION_WARNING_TYPE =
|
||||
"android.telephony.extra.SIM_COMBINATION_WARNING_TYPE";
|
||||
|
||||
/** @hide */
|
||||
@IntDef({
|
||||
EXTRA_SIM_COMBINATION_WARNING_TYPE_NONE,
|
||||
EXTRA_SIM_COMBINATION_WARNING_TYPE_DUAL_CDMA
|
||||
})
|
||||
@Retention(RetentionPolicy.SOURCE)
|
||||
public @interface SimCombinationWarningType{}
|
||||
|
||||
/**
|
||||
* Used as an int value for {@link #EXTRA_DEFAULT_SUBSCRIPTION_SELECT_TYPE}
|
||||
* to indicate there's no SIM combination warning.
|
||||
* @hide
|
||||
*/
|
||||
public static final int EXTRA_SIM_COMBINATION_WARNING_TYPE_NONE = 0;
|
||||
|
||||
/**
|
||||
* Used as an int value for {@link #EXTRA_DEFAULT_SUBSCRIPTION_SELECT_TYPE}
|
||||
* to indicate two active SIMs are both CDMA hence there might be functional limitation.
|
||||
* @hide
|
||||
*/
|
||||
public static final int EXTRA_SIM_COMBINATION_WARNING_TYPE_DUAL_CDMA = 1;
|
||||
|
||||
/**
|
||||
* String intent extra to be used with {@link #ACTION_PRIMARY_SUBSCRIPTION_LIST_CHANGED}
|
||||
* to indicate what's the name of SIM combination it has limitation or compatible issue.
|
||||
* e.g. two CDMA SIMs may disrupt each other's voice call in certain scenarios, and the
|
||||
* name will be "operator1 & operator2".
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
public static final String EXTRA_SIM_COMBINATION_NAMES =
|
||||
"android.telephony.extra.SIM_COMBINATION_NAMES";
|
||||
//
|
||||
//
|
||||
// Device Info
|
||||
|
||||
Reference in New Issue
Block a user