IZI_Shadow_IZI
IZI_Shadow_IZI

Reputation: 1931

Open Android App by sending a text message?

I was wondering if it is possible to open an android app on someones phone by sending them a text message, assuming the user already has the application installed on his/her phone. Sort of like where's my Droid application? Could I send it like a text message saying "OPEN " a background service will recognize this and open the app? Is this possible and if so are their examples? Thanks

Upvotes: 7

Views: 2508

Answers (2)

marcos.borunda
marcos.borunda

Reputation: 1486

You just need to add the right permission in manifest:
"android.provider.Telephony.SMS_RECEIVED"

And then you'll need to extend a class from IntentReceiver. And override the method onReceiveIntent

Upvotes: 0

Marco Grassi
Marco Grassi

Reputation: 1202

Yes you can, with the right permission in manifest. You can tell your application to listen on android.provider.Telephony.SMS_RECEIVED intent, that will turn on a broadcast receiver when an SMS arrives. Then with the permission that grant to you to read the SMS you can simply check if the received SMS match your parameters (phone number of the sender and text content for example).

Once you've checked that the sms is the right sms you can start an Activity or what you want..

Upvotes: 4

Related Questions