Reputation: 128
How to remove warning _setAlwaysRunsAtForegroundPriority in IOS?
Always found this warning when I am trying to release my app to app store. Can any one have experienced of it please help
Upvotes: 3
Views: 209
Reputation: 8351
As per my experience, It's a warning you can ignore it still if you want to resolve this warning you need to update your webview plugin to the latest version and this will remove above warning.
Follow the below steps:
cordova plugin rm cordova-plugin-ionic-webview
cordova plugin add cordova-plugin-ionic-webview@latest
Will install the latest version of WebView Plugin and after onwards you will not get above warning.
Ref Link of this warning reported
Hope this will helps!
Upvotes: 2