How to convert a Meteor website to an Android app?

Hi,
I made a web app with Meteor and I’m wondering if I can do an Android app of this web app.

I know that I could do a webview who display my website but I founded this meteor run android-device. My question is how this method handle the Mongo collection ? It would be a single user app (imagine our app is a common-todo list) each app would have her own MongoDB so the todo list would be local to the phone ?

If someone could explain me a little bit how it works I’d appreciate

You’ll need to follow the Meteor mobile guide.
It’ll still be a Cordova web view, but you can ground:db to store collections locally.

1 Like

So it’s “the same” as doing an Android app using AndroidStudio who display a webview of my webapp ?