I want to delete multiple phone numbers in a single query. I'm using the following code.
I will be adding where/select args to limit what I delete, but even the above throws an exception.
java.lang.UnsupportedOperationException: Cannot delete that URL: content://contacts/phones
Shouldn't it be possible to do this? I'm using v1.5.
Thanks for any help!
Code:
getContentResolver.delete(Contacts.Phones.CONTENT_FILTER_URL, null, null);
I will be adding where/select args to limit what I delete, but even the above throws an exception.
java.lang.UnsupportedOperationException: Cannot delete that URL: content://contacts/phones
Shouldn't it be possible to do this? I'm using v1.5.
Thanks for any help!