diff options
author | Marcos Marado <mmarado@cyngn.com> | 2015-01-19 15:40:21 +0000 |
---|---|---|
committer | Steve Kondik <steve@cyngn.com> | 2015-10-26 16:09:10 -0700 |
commit | 588d74f4008f9e35873e8a403842f21358fd51e4 (patch) | |
tree | 47a0e130b1d39cdc66a6a9421b31da967c8cf6b2 /telephony/java/com/android/internal | |
parent | ed292165842f2c71e2a35f043258f757f0edef6e (diff) | |
download | frameworks_base-588d74f4008f9e35873e8a403842f21358fd51e4.zip frameworks_base-588d74f4008f9e35873e8a403842f21358fd51e4.tar.gz frameworks_base-588d74f4008f9e35873e8a403842f21358fd51e4.tar.bz2 |
protected SMS [1/4]
Ports "protected SMS" from CM11:
* Add API for protected SMS receive broadcasts.
Change-Id: I5dfeb94832eefac9607070e9fb29db589bac7a57
* SettingsProvider: fix load protected sms setting logic
Change-Id: I7d03821c5f5ac5d24445e5c03f7911c3a81c16dd
Change-Id: Ifd31eb9558e397bf92f4cdb87f9e2056bc71d22f
Diffstat (limited to 'telephony/java/com/android/internal')
-rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index 6e0ac88..5c05191 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -545,6 +545,16 @@ interface ITelephony { int getLteOnGsmMode(); /** + * Adds a protected sms address to the {@link Settings.Secure.PROTECTED_SMS_ADDRESSES} + */ + void addProtectedSmsAddress(String address); + + /** + * Revokes a protected sms address from {@link Settings.Secure.PROTECTED_SMS_ADDRESSES} + */ + boolean revokeProtectedSmsAddress(String address); + + /** * get default sim * @return sim id */ |