Which intent filter should I use in a broadcast receiver when I want that a service is running every 5 minutes, without the need of a reboot?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
An example of using AlarmManager
set alarm
and some receiver which will receive an Intent
and don’t forget to register receiver in
Manifest.xmlread docs for methods explanation, I have worked with it long time ago.