Reputation: 1387
Hi I want to write an application that can prevent other application from using the sms feature of android mobile. That means other than sms feature of android mobile, no application installed on phone can send sms message. How can this be implemented.
Thanks
Upvotes: 0
Views: 237
Reputation: 1007658
Fortunately, this is not possible, except perhaps by custom firmware. Any app that holds the SEND_SMS
permission is perfectly welcome to use SmsManager
to send an SMS.
Upvotes: 2