Why push notifications is not working on testflight?

前端 未结 9 1945
情话喂你
情话喂你 2020-11-29 20:06

I have tested push notifications as a developer account and it worked, But when i tried to put it on TestFlight for the testers to test it, it didn\'t show a push notificati

9条回答
  •  长情又很酷
    2020-11-29 20:39

    For Firebase try this:

    #if DEBUG
        Messaging.messaging().setAPNSToken(apnsToken, type: .sandbox)
    #else
        Messaging.messaging().setAPNSToken(apnsToken, type: .prod)
    #endif
    

提交回复
热议问题