You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During debugging i found that Extension Crashes at below line due to memory issue.
guard let user = database.user else {}
After some research i found that There is a memory limit in notification service extension. You are supposed to use memory less than about 4.5M. So avoid using NSUserDefaults. And Try to save memory you use.
SO is there any workaround ?
During debugging i found that Extension Crashes at below line due to memory issue.
guard let user = database.user else {}
After some research i found that There is a memory limit in notification service extension. You are supposed to use memory less than about 4.5M. So avoid using NSUserDefaults. And Try to save memory you use.
SO is there any workaround ?