Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 571
IZI_Shadow_IZI Avatar asked Jun 17 '11 12:06

IZI_Shadow_IZI


1 Answers

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..

like image 188
Marco Grassi Avatar answered Sep 21 '22 08:09

Marco Grassi