인프런 커뮤니티 질문&답변

harati님의 프로필 이미지

작성한 질문수

iOS/Android 앱 개발을 위한 실전 React Native - Basic

연락처에 접근하기

react-native-contacts 6버전에서 바꿔줘야합니다.

21.01.24 23:11 작성

·

509

0

최신버전에서는 아래와 같이 바꿔줘야합니다.

//contacts 6버전대
      Contacts.getAll()
    .then((contacts=> {
      // work with contacts
    })
    .catch((e=> { //handle error 
   })

답변 2

0

somee2147님의 프로필 이미지

2021. 02. 01. 20:50

참고해주세요
const getContacts = () => {
    requestContactPermission().then((didGetPermission=> {
      if (didGetPermission) {
        Contacts.getAll()
          .then((contacts=> {
            // console.warn(contacts);
            setMyContacts(contacts);
          })
          .catch((err=> {
            console.error(err);
            throw err;
          });
      } else {
        alert('no permission');
      }
    });
 };

0

장태영님의 프로필 이미지

2021. 01. 29. 20:44

최신버전으로 수정하신 코드를 공유해 주실 수 있으신가요??..ㅠ

harati님의 프로필 이미지

작성한 질문수

질문하기