-1

I want to run a background service, which reads the missed call numbers and stores in some database, is it possible to read call log particularly missed calls in android? If possible please let me know, any tutorial will be helpful to me.

Voora Tarun
  • 1,266
  • 1
  • 20
  • 38

1 Answers1

3

There is the CallLog content provider with which you can access the, well, call-log from a Service.

There are already examples on Stackoverflow how to access the log and which permissions your application requires, e.g. this answer.

Community
  • 1
  • 1
Martin C.
  • 12,140
  • 7
  • 40
  • 52