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.
Asked
Active
Viewed 760 times
-1
-
can you share the code or anything you have – Carlos Carrizales Jan 26 '16 at 14:18
1 Answers
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.