gree / unity-webview

zlib License
2.28k stars 691 forks source link

Keep webview alive as a backgroud proccess #1104

Open CDAfonso opened 2 weeks ago

CDAfonso commented 2 weeks ago

I have this app with a webview that embeds a page with javscript checking time from time for updates. If there is an update, the app triggers a local notification.

Any chance to make this work when the app is on background?

KojiNakamaru commented 2 weeks ago

Unfortunately you cannot implement such a logic. Applications on Android or iOS has to be paused in background.

CDAfonso commented 1 week ago

Thank you!