Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

ALL, Here is my code:

Cursor cur = getContentResolver().query(ContactsContract.Groups.Content_URI, null, null, null, null );

Apparently this code throws security exception on my HTC phone.

Does anybody knows how to get group names on Android?

Thank you.

share|improve this question

1 Answer

Have you added permissions in manifest file ? If not then add belew line of code in your manifest file.

<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>
<uses-permission android:name="android.permission.WRITE_CONTACTS"></uses-permission>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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