This library provides the GroupsDelete
API that allows you to delete existing Groups.
An instance of the GroupsDelete
API is obtained by,
val delete = Contacts(context).groups().delete()
To delete a set of existing groups,
val deleteResult = Contacts(context)
.groups()
.delete()
.groups(existingGroups)
.commit()
To delete a set of existing groups using IDs,
val deleteResult = Contacts(context)
.groups()
.delete()
.groupsWithId(1, 2, 3)
.commit()
You may specify a matching criteria, like in queries, that will delete all matching groups,
val deleteResult = delete
.groupsWhere { AccountType equalTo "com.google" }
.commit()
To execute the delete,
.commit()
To delete all given groups in a single atomic transaction,
.commitInOneTransaction()
The call to commitInOneTransaction
will only succeed if ALL given groups are successfully deleted.
If one delete fails, the entire operation will fail and everything will be reverted prior to the
delete operation. In contrast, commit
allows for some deletes to succeed and some to fail.
The commit
and commitInOneTransaction
functions returns a Result
,
To check if all deletes succeeded,
val allDeletesSuccessful = deleteResult.isSuccessful
To check if a particular delete succeeded,
val deleteSuccessful = deleteResult.isSuccessful(group)
val deleteSuccessful = deleteResult.isSuccessful(group.id)
To check if a particular advanced delete managed to delete at least one matching group,
val where = GroupsFields.AccountType equalTo "com.google"
val deleteResult = delete.groupsWhere(where).commit()
val advancedDeleteSuccessful = deleteResult.isSuccessful(where)
Deletes are executed when the commit
or commitInOneTransaction
function is invoked. The work is
done in the same thread as the call-site. This may result in a choppy UI.
To perform the work in a different thread, use the Kotlin coroutine extensions provided in the async
module.
For more info, read Execute work outside of the UI thread using coroutines.
You may, of course, use other multi-threading libraries or just do it yourself =)
ℹ️ Extensions for Kotlin Flow and RxJava are also in the project roadmap.
Deletes require the android.permission.WRITE_CONTACTS
permissions. If not granted, the delete
will do nothing and return a failed result.
To perform the delete with permission, use the extensions provided in the permissions
module.
For more info, read Permissions handling using coroutines.
You may, of course, use other permission handling libraries or just do it yourself =)
Groups created by the system are typically read-only. You cannot delete them, even if you try! The Contacts Provider typically have the following system groups (for standard Google Accounts),
- systemId: Contacts, title: My Contacts
- systemId: null, title: Starred in Android
- systemId: Friends, title: Friends
- systemId: Family, title: Family
- systemId: Coworkers, title: Coworkers
The above list may vary per Account and/or flavor of Android.
If you are implementing a sync adapter, you may be able to delete read-only groups associated with the Account that your sync adapter works with. For more info, read Contacts API Setup | Sync adapter operations.
When a group is deleted, any memberships to that group are deleted automatically by the Contacts Provider.
Groups may not immediately be deleted. They are marked for deletion and get deleted in the background by the Contacts Provider depending on sync settings and network availability.
Group memberships to those groups marked for deletion are immediately deleted!
ℹ️ For more info, read Sync contact data across devices.