tags:

views:

32

answers:

1

I'm working on an Android app that will send an automated response every time a text message is received. I looked around a bit on android's development site but haven't had anything that points me in the right direction. Does anyone have any ideas on where I should start with this or have any good links that might help?

I am a total beginner with developing Android apps so please bear with me if I'm a little slow with this.

A: 

You need to create a BroadcastReceiver to receive the SMS Intent as well as update your manifest to ask for the permission to recieve and register for SMS broadcasts.

There are plenty of simple examples available online. Here are the first three I found.

Tim Kryger