This library provides the ProfileInsert
API that allows you to insert one or more RawContacts and
Data.
ℹ️ There can be only one device owner Contact, which is either set (not null) or not yet set (null). However, like other regular Contacts, the Profile Contact may have one or more RawContacts.
An instance of the ProfileInsert
API is obtained by,
val insert = Contacts(context).profile().insert()
ℹ️ If you want to create/insert non-Profile Contacts, read Insert contacts.
To create/insert a raw contact with a name of "John Doe" who works at Amazon with a work email of "[email protected]" (in Kotlin),
val insertResult = Contacts(context)
.profile()
.insert()
.rawContacts(NewRawContact().apply {
name = NewName().apply {
givenName = "John"
familyName = "Doe"
}
organization = NewOrganization().apply {
company = "Amazon"
title = "Superstar"
}
emails.add(NewEmail().apply {
address = "[email protected]"
type = EmailEntity.Type.WORK
})
})
.commit()
Or alternatively, in a more Kotlinized style using named arguments,
val insertResult = Contacts(context)
.profile()
.insert()
.rawContacts(NewRawContact(
name = NewName(
givenName = "John",
familyName = "Doe"
),
organization = NewOrganization(
company = "Amazon",
title = "Superstar"
),
emails = mutableListOf(NewEmail(
address = "[email protected]",
type = EmailEntity.Type.WORK
))
))
.commit()
Or alternatively, using extension functions,
val insertResult = Contacts(context)
.profile()
.insert()
.rawContact {
setName {
givenName = "John"
familyName = "Doe"
}
setOrganization {
company = "Amazon"
title = "Superstar"
}
addEmail {
address = "[email protected]"
type = EmailEntity.Type.WORK
}
}
.commit()
The API allows you to specify if you want to be able to insert blank contacts or not,
.allowBlanks(true|false)
For more info, read about Blank contacts.
Blank data are data entities that have only null, empty, or blank primary value(s). Blanks are ignored and are not inserted by insert APIs.
For more info, read about Blank data.
The API allows you to insert a profile RawContact with an Account that already has a profile RawContact,
.allowMultipleRawContactsPerAccount(true|false)
According to the ContactsContract.Profile
documentation;
... each account (including data set, if applicable) on the device may contribute a single raw contact representing the user's personal profile data from that source.
In other words, one account can have one profile RawContact. However, despite the documentation of "one profile RawContact per one Account", the Contacts Provider allows for multiple RawContacts per Account, including multiple local RawContacts (no Account).
New RawContacts can be associated with an Account in order to enable syncing,
newRawContact.account = account
// or newRawContact.setAccount(account)
ℹ️ Prior to version 0.3.0, setting the account is done via the
ProfileInsert.forAccount
function.
For example, to associated the new RawContact to an account,
newRawContact.account = Account("[email protected]", "com.google")
// or newRawContact.setAccount(Account("[email protected]", "com.google"))
ℹ️ For more info, read Query for Accounts.
If no Account is provided, or null is provided, or if an incorrect account is provided, the RawContacts inserted will not be associated with an Account. RawContacts inserted without an associated account are considered local or device-only contacts, which are not synced.
ℹ️ For more info, read Sync contact data across devices.
To include only the given set of fields (data) in each of the insert operation,
.include(fields)
For example, to only include email and name fields,
.include { Email.all + Name.all }
For more info, read Include only certain fields for read and write operations.
To execute the insert,
.commit()
The commit
function returns a Result
,
val contactsApi = Contacts(context)
val newRawContact = NewRawContact(...)
val insertResult = contactsApi
.profile()
.insert()
.rawContact(newRawContact)
.commit()
To check if the insert succeeded,
val insertSucess = insertResult.isSuccessful
To get the RawContact IDs of the newly created RawContact,
val rawContactId = insertResult.rawContactId
Once you have the RawContact ID, you can retrieve the newly created Contact via the Query
API,
val contacts = contactsApi
.query()
.where { RawContact.Id equalTo rawContactId }
.find()
ℹ️ For more info, read Query contacts (advanced).
Alternatively, you may use the extensions provided in ProfileInsertResult
. To get the newly created
Contact,
val contact = insertResult.contact(contactsApi)
To instead get the RawContact directly,
val rawContacts = insertResult.rawContact(contactsApi)
To cancel an insert amid execution,
.commit { returnTrueIfInsertShouldBeCancelled() }
The commit
function optionally takes in a function that, if it returns true, will cancel insert
processing as soon as possible. The function is called numerous times during insert processing to
check if processing should stop or continue. This gives you the option to cancel the insert.
For example, to automatically cancel the insert inside a Kotlin coroutine when the coroutine is cancelled,
launch {
withContext(coroutineContext) {
val insertResult = insert.commit { !isActive }
}
}
Inserts are executed when the commit
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 v1 roadmap.
Inserts require the android.permission.WRITE_CONTACTS
and android.permission.GET_ACCOUNTS
permissions. If not granted, the insert will do nothing and return a failed result.
ℹ️ For API 22 and below, the permission "android.permission.WRITE_PROFILE" is also required but only at the manifest level. Prior to API 23 (Marshmallow), permissions needed to be granted prior to installation instead of at runtime.
To perform the insert 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 =)
The ProfileInsert
API supports custom data. For more info, read Insert custom data into new or existing contacts.
As per documentation in android.provider.ContactsContract.Profile
,
The user's profile entry cannot be created explicitly (attempting to do so will throw an exception). When a raw contact is inserted into the profile, the provider will check for the existence of a profile on the device. If one is found, the raw contact's RawContacts.CONTACT_ID column gets the _ID of the profile Contact. If no match is found, the profile Contact is created and its _ID is put into the RawContacts.CONTACT_ID column of the newly inserted raw contact.
To set full-sized photos (and by API design thumbnails), read Get set remove full-sized and thumbnail contact photos.