I need to find the outgoing,missed and incoming call from callLog.
My code is like this to get callLog
Context context=getApplicationContext();
Cursor callcur=context.getContentResolver().query(android.provider.CallLog.Calls.CONTENT_URI, null, null, null, android.provider.CallLog.Calls.DEFAULT_SORT_ORDER);
It is showing Exception:
Permission Denial: reading com.android.providers.contacts.ContactsProvider uri content://call_log/calls from pid=231, uid=10017 requires android.permission.READ_CONTACTS
Help me to solve this problem
Thanks in advance
Saranya
My code is like this to get callLog
Context context=getApplicationContext();
Cursor callcur=context.getContentResolver().query(android.provider.CallLog.Calls.CONTENT_URI, null, null, null, android.provider.CallLog.Calls.DEFAULT_SORT_ORDER);
It is showing Exception:
Permission Denial: reading com.android.providers.contacts.ContactsProvider uri content://call_log/calls from pid=231, uid=10017 requires android.permission.READ_CONTACTS
Help me to solve this problem
Thanks in advance
Saranya