Merge "Remove Mainline APIs for MmsManger and TelephonyManager" into rvc-dev am: 91604c2138
Change-Id: I5c660e7b10f1b1bf7edaf54b48f92b4b9d8d79ba
This commit is contained in:
@@ -10205,7 +10205,6 @@ package android.content {
|
||||
field public static final String MEDIA_ROUTER_SERVICE = "media_router";
|
||||
field public static final String MEDIA_SESSION_SERVICE = "media_session";
|
||||
field public static final String MIDI_SERVICE = "midi";
|
||||
field public static final String MMS_SERVICE = "mms";
|
||||
field public static final int MODE_APPEND = 32768; // 0x8000
|
||||
field public static final int MODE_ENABLE_WRITE_AHEAD_LOGGING = 8; // 0x8
|
||||
field @Deprecated public static final int MODE_MULTI_PROCESS = 4; // 0x4
|
||||
@@ -47548,11 +47547,6 @@ package android.telephony {
|
||||
method @Nullable public android.telephony.mbms.StreamingService startStreaming(android.telephony.mbms.StreamingServiceInfo, @NonNull java.util.concurrent.Executor, android.telephony.mbms.StreamingServiceCallback);
|
||||
}
|
||||
|
||||
public class MmsManager {
|
||||
method public void downloadMultimediaMessage(int, @NonNull String, @NonNull android.net.Uri, @Nullable android.os.Bundle, @Nullable android.app.PendingIntent, long);
|
||||
method public void sendMultimediaMessage(int, @NonNull android.net.Uri, @Nullable String, @Nullable android.os.Bundle, @Nullable android.app.PendingIntent, long);
|
||||
}
|
||||
|
||||
@Deprecated public class NeighboringCellInfo implements android.os.Parcelable {
|
||||
ctor @Deprecated public NeighboringCellInfo();
|
||||
ctor @Deprecated public NeighboringCellInfo(int, int);
|
||||
|
||||
@@ -11569,9 +11569,6 @@ package android.telephony {
|
||||
field public static final String ACTION_SIM_APPLICATION_STATE_CHANGED = "android.telephony.action.SIM_APPLICATION_STATE_CHANGED";
|
||||
field public static final String ACTION_SIM_CARD_STATE_CHANGED = "android.telephony.action.SIM_CARD_STATE_CHANGED";
|
||||
field public static final String ACTION_SIM_SLOT_STATUS_CHANGED = "android.telephony.action.SIM_SLOT_STATUS_CHANGED";
|
||||
field public static final int CARD_POWER_DOWN = 0; // 0x0
|
||||
field public static final int CARD_POWER_UP = 1; // 0x1
|
||||
field public static final int CARD_POWER_UP_PASS_THROUGH = 2; // 0x2
|
||||
field public static final int CARRIER_PRIVILEGE_STATUS_ERROR_LOADING_RULES = -2; // 0xfffffffe
|
||||
field public static final int CARRIER_PRIVILEGE_STATUS_HAS_ACCESS = 1; // 0x1
|
||||
field public static final int CARRIER_PRIVILEGE_STATUS_NO_ACCESS = 0; // 0x0
|
||||
|
||||
@@ -3430,7 +3430,7 @@ public abstract class Context {
|
||||
TELEPHONY_SUBSCRIPTION_SERVICE,
|
||||
CARRIER_CONFIG_SERVICE,
|
||||
EUICC_SERVICE,
|
||||
MMS_SERVICE,
|
||||
//@hide: MMS_SERVICE,
|
||||
TELECOM_SERVICE,
|
||||
CLIPBOARD_SERVICE,
|
||||
INPUT_METHOD_SERVICE,
|
||||
@@ -4344,6 +4344,7 @@ public abstract class Context {
|
||||
*
|
||||
* @see #getSystemService(String)
|
||||
* @see android.telephony.MmsManager
|
||||
* @hide
|
||||
*/
|
||||
public static final String MMS_SERVICE = "mms";
|
||||
|
||||
|
||||
@@ -32,6 +32,7 @@ import com.android.internal.telephony.IMms;
|
||||
/**
|
||||
* Manages MMS operations such as sending multimedia messages.
|
||||
* Get this object by calling Context#getSystemService(Context#MMS_SERVICE).
|
||||
* @hide
|
||||
*/
|
||||
@SystemService(Context.MMS_SERVICE)
|
||||
public class MmsManager {
|
||||
|
||||
@@ -881,9 +881,6 @@ package android.telephony {
|
||||
field public static final String ACTION_SIM_APPLICATION_STATE_CHANGED = "android.telephony.action.SIM_APPLICATION_STATE_CHANGED";
|
||||
field public static final String ACTION_SIM_CARD_STATE_CHANGED = "android.telephony.action.SIM_CARD_STATE_CHANGED";
|
||||
field public static final String ACTION_SIM_SLOT_STATUS_CHANGED = "android.telephony.action.SIM_SLOT_STATUS_CHANGED";
|
||||
field public static final int CARD_POWER_DOWN = 0; // 0x0
|
||||
field public static final int CARD_POWER_UP = 1; // 0x1
|
||||
field public static final int CARD_POWER_UP_PASS_THROUGH = 2; // 0x2
|
||||
field public static final int CARRIER_PRIVILEGE_STATUS_ERROR_LOADING_RULES = -2; // 0xfffffffe
|
||||
field public static final int CARRIER_PRIVILEGE_STATUS_HAS_ACCESS = 1; // 0x1
|
||||
field public static final int CARRIER_PRIVILEGE_STATUS_NO_ACCESS = 0; // 0x0
|
||||
|
||||
@@ -9743,14 +9743,12 @@ public class TelephonyManager {
|
||||
* Powers down the SIM. SIM must be up prior.
|
||||
* @hide
|
||||
*/
|
||||
@SystemApi
|
||||
public static final int CARD_POWER_DOWN = 0;
|
||||
|
||||
/**
|
||||
* Powers up the SIM normally. SIM must be down prior.
|
||||
* @hide
|
||||
*/
|
||||
@SystemApi
|
||||
public static final int CARD_POWER_UP = 1;
|
||||
|
||||
/**
|
||||
@@ -9768,7 +9766,6 @@ public class TelephonyManager {
|
||||
* is NOT persistent across boots. On reboot, SIM will power up normally.
|
||||
* @hide
|
||||
*/
|
||||
@SystemApi
|
||||
public static final int CARD_POWER_UP_PASS_THROUGH = 2;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user