HACKER Q&A
📣 tucaz

What's the fastest way to release a mobile app today?


Imagine I want to launch an Android/IOS mobile app so my users can access a subscription to a magazine which contains pretty much only text content.

What would be the fastest way to get that done today? I know React Native is heavily used, but it seems like too heavy and complex for such a simple set of requirements.

What can I use to get a simple application out in a few days?


  👤 davismwfl Accepted Answer ✓
Depends on how the content is generated and updated. Is it hosted already on a website? If so, the fast way would be to do either a mobile app that is essentially just a web view for your content or to use something like Cordova to pack up the website and deliver it as an app. I honestly do not advocate for either of these options but they are options.

Personally for any app I want to get out quickly on both platforms I have been using Flutter and find it is a good compromise, better than React Native (IMO) and quick to iterate and simple to still keep a native feel for each platform (and still have performance). Still the best way is to create a native app for each platform, but for what you are doing that seems like overkill at this point.

Really it all depends on how your content is updated and where it is at today that would drive how I'd likely approach it.


👤 schmookeeg
I had a similar mission recently -- subscription data that I want to allow access to offline. I have done native and Cordova in the past, and didn't want to use either.

I was able to hoist something in Flutter quickly and painlessly. I was pretty impressed. I hope I never muck with Cordova again after working with it. :)

Worth an hour and a hello-world tutorial to see if you're keen on it. I liked it.


👤 holografix
Building a website. Why do you need an app?