yarn add @react-native-firebase/messaging
cd ios
arch -x86_64 pod install

젠장..

arch -x86_64 pod update PromisesObjC

완료! 🙌🏻

권한 설정

open . 해서 Select the project target → "Signing & Capabilities" tab에 들어간다.

Push Notifications을 추가한다. (난 되어 있다..)

Background Modes도 추가한다.

Background fetch 와 Remote notifications을 체크한다.

Linking APNs with FCM

애플 개발자 설정가서 키를 등록해야 한다.

The name of the key can be anything, however you must ensure the APNs service is enabled

APNs에 체크를 하고 Continue → Register

Download하고 Key ID을 복사해둔다.

파이어베이스 콘솔에 키를 등록한다

→ 프로젝트 설정 → 클라우드 메시징

밑으로 스크롤 → APN 인증 키 업로드

위에 복사한 Key ID를 적고 다운 받은 APN 인증 키을 업로드 한다.

Team ID는 Account Membership에 있다

앱의 번들러 ID에 해당되는 Identifiers에 가서 추가 (app.json)에 있다.

Push Notifications를 체크한다.

이제 Profile를 생성하자

위에서 Identifiers에 생성한 것을 선택

다음 Certificate 가 없으면 지시대로 하고 다음하고 Device를 등록한다.,

Apple에 개인 Device 등록하고 Build하기

생성 완료!

이제 XCode에서 Provisioning Profile을 등록하면 된다. (난 자동으로 적용된 것 같다)

yarn ios

참고

iOS Messaging Setup | React Native Firebase