MartinMalinda / vue-concurrency

A library for encapsulating asynchronous operations and managing concurrency for Vue and Composition API.
https://vue-concurrency.netlify.app/
MIT License
350 stars 15 forks source link

Question: can use vue-concurrency with android app? #74

Closed elfxby closed 2 years ago

elfxby commented 2 years ago

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)
})
MartinMalinda commented 2 years ago

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.