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
Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key _alwaysRunsAtForegroundPriority.'
1.问题描述
iOS 用户把手机升级到iOS 12.2 后,app闪退。
build 到模拟器报错:
2.原因
经过搜索发现是
cordova-plugin-background-mode
插件的原因。具体原因可参考链接:插件github地址
3. 解决办法:
在
/platforms/ios/myAPP/Plugins/cordova-plugin-background-mode/APPBackgroundMode.m
中,修改👇成:
实际上就是将:
_alwaysRunsAtForegroundPriority
改成了
alwaysRunsAtForegroundPriority
4. 存在的问题
修改后不一定保证
cordova-plugin-background-mode
可以正常。将持续关注 此问题的解决方法。The text was updated successfully, but these errors were encountered: