Package-level declarations

Contains the PlatformHelperRecentCalls class to add and remove recent calls in Android ContactsProvider using a contentResolver. It also contains the data classes TypedCall that will be linked to recent calls.

Types

Link copied to clipboard
@IviExperimental(reasons = [])
class PlatformHelperRecentCalls(context: Context, account: Account? = Account(ACCOUNT_SOURCE_NAME, ACCOUNT_SOURCE_TYPE))

Util class to add and remove recent calls in Android ContactsProvider using a contentResolver. Each recent calls is added to the specified Account.

Link copied to clipboard
@IviExperimental(reasons = [])
data class TypedCall(val phoneNumber: String, val type: Int)

TypedCall is a pair value phoneNumber and a type. type shall be a value from the list provided by Android, see Calls.INCOMING_TYPE.