Merge "Un-deprecate SmsManager APIs"
This commit is contained in:
@@ -45578,7 +45578,7 @@ package android.telephony {
|
||||
method public String createAppSpecificSmsToken(android.app.PendingIntent);
|
||||
method @Nullable public String createAppSpecificSmsTokenWithPackageInfo(@Nullable String, @NonNull android.app.PendingIntent);
|
||||
method public java.util.ArrayList<java.lang.String> divideMessage(String);
|
||||
method @Deprecated public void downloadMultimediaMessage(android.content.Context, String, android.net.Uri, android.os.Bundle, android.app.PendingIntent);
|
||||
method public void downloadMultimediaMessage(android.content.Context, String, android.net.Uri, android.os.Bundle, android.app.PendingIntent);
|
||||
method @NonNull public android.os.Bundle getCarrierConfigValues();
|
||||
method public static android.telephony.SmsManager getDefault();
|
||||
method public static int getDefaultSmsSubscriptionId();
|
||||
@@ -45588,7 +45588,7 @@ package android.telephony {
|
||||
method public int getSubscriptionId();
|
||||
method public void injectSmsPdu(byte[], String, android.app.PendingIntent);
|
||||
method public void sendDataMessage(String, String, short, byte[], android.app.PendingIntent, android.app.PendingIntent);
|
||||
method @Deprecated public void sendMultimediaMessage(android.content.Context, android.net.Uri, String, android.os.Bundle, android.app.PendingIntent);
|
||||
method public void sendMultimediaMessage(android.content.Context, android.net.Uri, String, android.os.Bundle, android.app.PendingIntent);
|
||||
method public void sendMultipartTextMessage(String, String, java.util.ArrayList<java.lang.String>, java.util.ArrayList<android.app.PendingIntent>, java.util.ArrayList<android.app.PendingIntent>);
|
||||
method public void sendTextMessage(String, String, String, android.app.PendingIntent, android.app.PendingIntent);
|
||||
method @RequiresPermission(allOf={android.Manifest.permission.MODIFY_PHONE_STATE, android.Manifest.permission.SEND_SMS}) public void sendTextMessageWithoutPersisting(String, String, String, android.app.PendingIntent, android.app.PendingIntent);
|
||||
|
||||
@@ -2395,7 +2395,6 @@ public final class SmsManager {
|
||||
* @param sentIntent if not NULL this <code>PendingIntent</code> is
|
||||
* broadcast when the message is successfully sent, or failed
|
||||
* @throws IllegalArgumentException if contentUri is empty
|
||||
* @deprecated use {@link MmsManager#sendMultimediaMessage} instead.
|
||||
*/
|
||||
public void sendMultimediaMessage(Context context, Uri contentUri, String locationUrl,
|
||||
Bundle configOverrides, PendingIntent sentIntent) {
|
||||
@@ -2430,7 +2429,6 @@ public final class SmsManager {
|
||||
* @param downloadedIntent if not NULL this <code>PendingIntent</code> is
|
||||
* broadcast when the message is downloaded, or the download is failed
|
||||
* @throws IllegalArgumentException if locationUrl or contentUri is empty
|
||||
* @deprecated use {@link MmsManager#downloadMultimediaMessage} instead.
|
||||
*/
|
||||
public void downloadMultimediaMessage(Context context, String locationUrl, Uri contentUri,
|
||||
Bundle configOverrides, PendingIntent downloadedIntent) {
|
||||
|
||||
Reference in New Issue
Block a user