diff options
| author | 2015-07-29 23:17:49 +0000 | |
|---|---|---|
| committer | 2015-07-29 23:17:49 +0000 | |
| commit | 2864e9d4d04fc0070a17533e2007c49dead1c890 (patch) | |
| tree | 60d567f93c3d1031c7b51188f8db93f64638ec7d | |
| parent | 409607431454354217cf19bc3e8df040bbee1c71 (diff) | |
| parent | 8c895f946e44dc6821b051b39ad7bab19377aa12 (diff) | |
am 8c895f94: am f520f022: am 499f084d: Merge "Add API to let carrier app send SMS without auto perisisting." into mnc-dev
* commit '8c895f946e44dc6821b051b39ad7bab19377aa12':
Add API to let carrier app send SMS without auto perisisting.
| -rw-r--r-- | telephony/java/com/android/internal/telephony/ISms.aidl | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/telephony/java/com/android/internal/telephony/ISms.aidl b/telephony/java/com/android/internal/telephony/ISms.aidl index 21c94c2608ad..70a8653135c8 100644 --- a/telephony/java/com/android/internal/telephony/ISms.aidl +++ b/telephony/java/com/android/internal/telephony/ISms.aidl @@ -149,10 +149,14 @@ interface ISms { * broadcast when the message is delivered to the recipient. The * raw pdu of the status report is in the extended data ("pdu"). * @param subId the subId on which the SMS has to be sent. + * @param persistMessageForNonDefaultSmsApp whether the sent message should + * be automatically persisted in the SMS db. It only affects messages sent + * by a non-default SMS app. Currently only the carrier app can set this + * parameter to false to skip auto message persistence. */ void sendTextForSubscriber(in int subId, String callingPkg, in String destAddr, in String scAddr, in String text, in PendingIntent sentIntent, - in PendingIntent deliveryIntent); + in PendingIntent deliveryIntent, in boolean persistMessageForNonDefaultSmsApp); /** * Send an SMS. Internal use only. @@ -219,11 +223,15 @@ interface ISms { * to the recipient. The raw pdu of the status report is in the * extended data ("pdu"). * @param subId the subId on which the SMS has to be sent. + * @param persistMessageForNonDefaultSmsApp whether the sent message should + * be automatically persisted in the SMS db. It only affects messages sent + * by a non-default SMS app. Currently only the carrier app can set this + * parameter to false to skip auto message persistence. */ void sendMultipartTextForSubscriber(in int subId, String callingPkg, in String destinationAddress, in String scAddress, in List<String> parts, in List<PendingIntent> sentIntents, - in List<PendingIntent> deliveryIntents); + in List<PendingIntent> deliveryIntents, in boolean persistMessageForNonDefaultSmsApp); /** * Enable reception of cell broadcast (SMS-CB) messages with the given |