본문 바로가기

Xcode

[Xcode] UIBackgroundModes remote-notification

[Error]

2019-06-11 11:35:23.696886+0900 Runner[4138:1312265] You've implemented -[<UIApplicationDelegate> application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist.

 

 

[Solution]

append info.plist

<key>UIBackgroundModes</key>
<array>
<string>remote-notification</string>
</array>

'Xcode' 카테고리의 다른 글

[Xcode] Clear Derived Data  (0) 2019.06.17
[Xcode] SWIFT_VERSION  (0) 2019.06.13
[Xcode] UIBackgroundModes fetch  (0) 2019.06.11
[Xcode] FacebookAdvertiserIDCollectionEnabled  (0) 2019.06.11
[Xcode] FacebookAutoLogAppEventsEnabled  (0) 2019.06.11