In Android 17 (API 37), the Intent.ACTION_PICK_CONTACTS intent will launch a modern contacts picker, as announced at https://android-developers.googleblog.com/2026/03/contact-picker-privacy-first-contact.html and documented at https://developer.android.com/about/versions/17/features/contact-picker.
This has various advantages like being able to select multiple contacts (whereas the current Android Intent.ACTION_PICK is limited to a single contact), but it requires updating our android-sdk-compile to API 37 (the current compile SDK is 36 as of skiptools/skip-unit#12)
In Android 17 (API 37), the
Intent.ACTION_PICK_CONTACTSintent will launch a modern contacts picker, as announced at https://android-developers.googleblog.com/2026/03/contact-picker-privacy-first-contact.html and documented at https://developer.android.com/about/versions/17/features/contact-picker.This has various advantages like being able to select multiple contacts (whereas the current Android
Intent.ACTION_PICKis limited to a single contact), but it requires updating ourandroid-sdk-compileto API 37 (the current compile SDK is 36 as of skiptools/skip-unit#12)