Manoj Kumar
Manoj Kumar

Reputation: 128

Warning in IOS build while validating app

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

enter image description here

Upvotes: 3

Views: 209

Answers (1)

CodeChanger
CodeChanger

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

Related Questions