I was trying to get APNS push token.
func configPushNotifications(_ application: UIApplication) {
application.registerForRemoteNotifications()
}
But I didn't received any Token from AppDelegate if I am using My Phone Sim Internet (4g/3g).
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data)
But if i use Wifi, it's working fine.
I checked iOS 13.1.2 and 13.1.3. Both have the same problem. But lower versions like iOS 12 or 11 working fine. Is it apple bug? or I have to request token with different config for Mobile network?
