Android 11

Android/Error

[Android] contact picker doesn't work on Android 11

오늘 우연히 옆자리에 같이 있는 iOS 개발자분과 앱 인터렉션에 대해서 이야기를 나누는 도중 연락처를 불러오는 기능이 올바르게 동작하고 있지 않는다는 것을 알게 되었어요. (눈물...) val intent = Intent(Intent.ACTION_PICK).apply { data = ContactsContract.CommonDataKinds.Phone.CONTENT_URI } if (intent.resolveActivity(packageManager) != null) { startActivity(intent) } 위 코드는 기기 내에 설치된 연락처 앱을 실행시키는 코드입니다. Android 10 이하에서는 정상 동작하는 것을 확인할 수 있지만 Android 11 버전에서는 아무일도 일어나지 않는 것을 확..

점냥
'Android 11' 태그의 글 목록