diff options
author | Amit Mahajan <amitmahajan@google.com> | 2015-01-30 01:03:30 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-01-30 01:03:30 +0000 |
commit | ed1a46393e50cb2954876ef19ca539829fdf4a19 (patch) | |
tree | f016562db1d8155c18c60ad2291b93bdc71b5aae /telephony | |
parent | 3f8a5ed5b4907cdaf0813e849e49131c82a3f634 (diff) | |
parent | d492aa08206d21ba2e5ba533532630e5abe0bffe (diff) | |
download | frameworks_base-ed1a46393e50cb2954876ef19ca539829fdf4a19.zip frameworks_base-ed1a46393e50cb2954876ef19ca539829fdf4a19.tar.gz frameworks_base-ed1a46393e50cb2954876ef19ca539829fdf4a19.tar.bz2 |
am d492aa08: am 45446c63: Merge "Adding new API to ISms to check if default SMS SIM needs to be chosen by user." into lmp-mr1-dev
* commit 'd492aa08206d21ba2e5ba533532630e5abe0bffe':
Adding new API to ISms to check if default SMS SIM needs to be chosen by user.
Diffstat (limited to 'telephony')
-rw-r--r-- | telephony/java/com/android/internal/telephony/ISms.aidl | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/telephony/java/com/android/internal/telephony/ISms.aidl b/telephony/java/com/android/internal/telephony/ISms.aidl index 6fdf121..70ac268 100644 --- a/telephony/java/com/android/internal/telephony/ISms.aidl +++ b/telephony/java/com/android/internal/telephony/ISms.aidl @@ -453,10 +453,6 @@ interface ISms { */ void setPremiumSmsPermission(String packageName, int permission); - /** - * Set the SMS send permission for the specified package. - * Requires system permission. - */ /** * Set the SMS send permission for the specified package. * Requires system permission. @@ -483,6 +479,14 @@ interface ISms { */ boolean isImsSmsSupportedForSubscriber(int subId); + /** + * User needs to pick SIM for SMS if multiple SIMs present and if current subId passed in is not + * active/valid. + * @param subId current subId for sending SMS + * @return true if SIM for SMS sending needs to be chosen + */ + boolean isSmsSimPickActivityNeeded(int subId); + /* * get user prefered SMS subId * @return subId id |