MartinMalinda / vue-concurrency

A library for encapsulating asynchronous operations and managing concurrency for Vue and Composition API.

Home Page:https://vue-concurrency.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Question: can use vue-concurrency with android app?

elfxby opened this issue · comments

I am using capacitor to create an android app. In debug mode everything works, but the release app only gives a white screen.

white screen:

const task = useTask(function* () {
  yield timeout(700)
})

I don't see a reason why this would break. I'd guess capacitor still use a webview right? So it uses android chrome under the hood. It should have support for generator functions.