앱을 App Store에 Archive하면 메일로 경고장이 날라 온다.
사실 처음 업로드 할 때 해결 했던 부분인데 iOS 파일을 초기화하면서 다시 설정해야 하는 사태가..
iOS/Runner/Info.plist 파일에 다음 코드를 추가해 준다.
<dict>
<key>NSPhotoLibraryUsageDescription</key>
<string>Photo Library Access Warning</string>
...
해당 오류는 Push Notification을 Capability에 추가해주어야하는 오류입니다.
Xcode를 통해 간단하게 추가해줌으로써 해결이 가능합니다.
출처: https://mdpapa.tistory.com/143 [: : 만두아빠 ITstory : ::티스토리]
끝.