Shiny.Maui.ContactStore 1.0.1

Prefix Reserved
dotnet add package Shiny.Maui.ContactStore --version 1.0.1
                    
NuGet\Install-Package Shiny.Maui.ContactStore -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Shiny.Maui.ContactStore" Version="1.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Shiny.Maui.ContactStore" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Shiny.Maui.ContactStore" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Shiny.Maui.ContactStore --version 1.0.1
                    
#r "nuget: Shiny.Maui.ContactStore, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Shiny.Maui.ContactStore@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Shiny.Maui.ContactStore&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Shiny.Maui.ContactStore&version=1.0.1
                    
Install as a Cake Tool

Shiny.Maui.ContactStore

A cross-platform .NET MAUI library for accessing device contacts on Android and iOS. Provides full CRUD operations, LINQ query support, MAUI permission classes, and dependency injection integration.

Platforms

Platform Minimum Version
Android API 24
iOS 15.0

Setup

Install

dotnet add package Shiny.Maui.ContactStore

Registration

builder.Services.AddContactStore();

Platform Permissions

The library provides MAUI permission classes you can use with Permissions.RequestAsync:

  • ContactReadPermission — read access to contacts
  • ContactWritePermission — write access to contacts

Android — Add to AndroidManifest.xml:

<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.WRITE_CONTACTS" />

iOS — Add to Info.plist:

<key>NSContactsUsageDescription</key>
<string>This app needs access to your contacts.</string>
iOS Notes & Relations Entitlement

Reading and writing the Note and Relationships properties on iOS requires the com.apple.developer.contacts.notes entitlement. The library automatically detects whether this entitlement is present at runtime. If absent, Note will return null and Relationships will be empty — no configuration or error handling needed on your part.

To enable notes and relations, add an Entitlements.plist with:

<key>com.apple.developer.contacts.notes</key>
<true/>

Note: This entitlement requires approval from Apple before it can be used in production apps.

Usage

Inject IContactStore into your class:

public class MyService(IContactStore contactStore)
{
}

Request Permission

var status = await Permissions.RequestAsync<ContactReadPermission>();
if (status != PermissionStatus.Granted)
{
    // handle denied
    return;
}

For write access:

var status = await Permissions.RequestAsync<ContactWritePermission>();

Get All Contacts

IReadOnlyList<Contact> contacts = await contactStore.GetAll();

Get Contact by ID

Contact? contact = await contactStore.GetById("some-id");

Query with LINQ

The library supports LINQ queries with native translation where possible and in-memory fallback for unsupported filters.

// Filter by name
var results = contactStore.Query()
    .Where(c => c.GivenName.Contains("John"))
    .ToList();

// Filter by phone number
var results = contactStore.Query()
    .Where(c => c.Phones.Any(p => p.Number.Contains("555")))
    .ToList();

// Filter by email
var results = contactStore.Query()
    .Where(c => c.Emails.Any(e => e.Address.Contains("@example.com")))
    .ToList();

// Combine filters
var results = contactStore.Query()
    .Where(c => c.GivenName.StartsWith("J") && c.FamilyName.Contains("Smith"))
    .ToList();

// Paging
var page = contactStore.Query()
    .Where(c => c.FamilyName.StartsWith("A"))
    .Skip(10)
    .Take(20)
    .ToList();

Supported query operations: Contains, StartsWith, EndsWith, Equals

Filterable properties: GivenName, FamilyName, MiddleName, NamePrefix, NameSuffix, Nickname, DisplayName, Note

Filterable collections: Phones (by Number), Emails (by Address)

Create a Contact

var contact = new Contact
{
    GivenName = "John",
    FamilyName = "Doe",
    Note = "Met at conference"
};
contact.Phones.Add(new ContactPhone("555-1234", PhoneType.Mobile));
contact.Emails.Add(new ContactEmail("john@example.com", EmailType.Work));

string id = await contactStore.Create(contact);

Update a Contact

var contact = await contactStore.GetById(id);
contact.GivenName = "Jane";
await contactStore.Update(contact);

Delete a Contact

await contactStore.Delete(contactId);

Models

Contact

Property Type Description
Id string? Platform-assigned identifier
NamePrefix string? e.g. "Mr.", "Dr."
GivenName string? First name
MiddleName string? Middle name
FamilyName string? Last name
NameSuffix string? e.g. "Jr.", "III"
Nickname string? Nickname
DisplayName string? Auto-generated from name parts if not set
Note string? iOS requires entitlement (see above)
Organization ContactOrganization? Company, Title, Department
Photo byte[]? Full-size photo
Thumbnail byte[]? Thumbnail photo
Phones List<ContactPhone> Phone numbers
Emails List<ContactEmail> Email addresses
Addresses List<ContactAddress> Postal addresses
Dates List<ContactDate> Birthdays, anniversaries, etc.
Relationships List<ContactRelationship> iOS requires entitlement (see above)
Websites List<ContactWebsite> URLs

Enums

PhoneType: Home, Mobile, Work, FaxWork, FaxHome, Pager, Other, Custom

EmailType: Home, Work, Other, Custom

AddressType: Home, Work, Other, Custom

ContactDateType: Birthday, Anniversary, Other, Custom

RelationshipType: Father, Mother, Parent, Brother, Sister, Child, Friend, Spouse, Partner, Assistant, Manager, Other, Custom

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-android36.0 is compatible.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-ios26.0 is compatible.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 147 4/1/2026
1.0.1-beta-0002 102 4/1/2026
1.0.0 114 3/25/2026
1.0.0-beta-0006 109 3/25/2026
1.0.0-beta-0005 102 3/25/2026