I want to make a SMS gateway app, that polls my website and checks if there are messages to send in the queue, and if there is, the app will send it to the destination number.

There should also be a callback function, where I will post information about the message, what android did exactly with it.

I thought first to create a service and do the poll check over wifi to the website, but refering to website "http://www.androidguys.com/2009/09/09/diamonds-are-forever-services-are-not/" it is not possible to create a service that will run forever.

What should I take in mind by make this app possible. There a lot of tricks, like wakelocks, startforeground etc, but still the service will not run forever.

Thanks.

Shafqat

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

For sending sms messages: http://developer.android.com/reference/android/telephony/SmsManager.html

For checking/polling for new messages, probably the best way is using push messages. Since 2.2 this can be done with Cloud To Device Messaging: http://android-developers.blogspot.com/2010/05/android-cloud-to-device-messaging.html and http://blog.boxedice.com/2010/10/07/android-push-notifications-tutorial/

That should work in the background, in the same way that gmail checks his mail (for example)

link|improve this answer
I have a device that will not be upgraded to version 2.2, so I have to create the app for 2.1. – shafqat Dec 1 '10 at 16:15
There are alternatives to C2DM; like tokudu.com/2010/how-to-implement-push-notifications-for-android – Barry Dec 2 '10 at 8:23
feedback

As that post recommends, you should use AlarmManager to handle periodic polling.

link|improve this answer
Can I also use AlarmManager for periodic polling of 5 seconds? – shafqat Dec 1 '10 at 16:10
and what about will the alarm be prevented from to run when the cpu is in standby mode? – shafqat Dec 1 '10 at 16:16
(But waking up and polling every 5 minutes is expensive for the battery..) – Barry Dec 2 '10 at 8:24
that's no problem, the device will be always be attached with the charger. – shafqat Dec 2 '10 at 9:54
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.