Firebase iOS Push notification not receiving on first app launch

Viewed 492
1 Answers

I had the same issue while googling a lot I found a lot and this works for me by downgrading the firebase SDK version:

pod 'Firebase/Messaging', '~> 6.33.0' pod 'Firebase/Analytics', '~> 6.33.0'

I hope this could help you. And it seems the Firebase team has not yet fixed this issue in their new milestone

Related