[React Native] No Permission handler detected 해결

jiveloper·2022년 12월 10일
0

React Native

목록 보기
1/13
post-thumbnail
post-custom-banner

🆘 😕 에러명

No Permission handler detected



❓ 🧐 원인

iOS에서 react native permission 권한을 인식하지 못해 발생



📌 😋 해결

1. appname > ios > Podfile에 해당문 추가

(저는 카메라 라이브러리를 사용하려고 카메라 permission을 부여하였습니다. 권한이 필요한 라이브러리를 path에 맞게 추가하시면 됩니다.)

permissions_path = '../node_modules/react-native-permissions/ios'

pod 'Permission-Camera', :path => "../node_modules/react-native-permissions/ios/Camera"

2. 권한 라이브러리 설치

npm i react-native-permissions

3. appname > ios > appname > info.plist에 해당문 추가

<key>NSCameraUsageDescription</key>

<string>QR 스캔을 위한 카메라 권한이 필요합니다.</string>

4. pod 설치

cd ios && pod install

5. iOS 재실행

react-native run-ios




참고

https://github.com/zoontek/react-native-permissions/issues/449

profile
👩🏻‍💻 Clean Code와 Refactoring에 관심이 많은 개발자 입니다.
post-custom-banner

0개의 댓글