How should I start building a camera and group-chat mobile app?

0
0
Asked By MellowPine47 On

I'm working on a thesis that requires me to build a mobile application from scratch. So far, I've only developed websites and haven't worked with mobile development before. The app will mainly involve taking and sharing photos, a home-screen widget, and group chat features—somewhat similar to a photo-sharing app. What technology and development path would be best for getting started?

2 Answers

Answered By VividMarble31 On

Capacitor is another option if you want to reuse your web development skills. It packages a web app as a mobile application and provides plugins for features such as the camera. It may be a practical choice for a thesis prototype, although you should check early whether it supports the widget and other native features you need.

Answered By CopperLark22 On

Since you already know web development, React Native with Expo could be a good starting point because the development style should feel relatively familiar. Begin with a small prototype: open the camera, take and save a photo, add authentication, and then build a basic group chat. Leave widgets and notifications until the core app is working, since those features tend to require more platform-specific knowledge. For the backend, services such as Firebase or Supabase can provide authentication, storage, databases, and real-time messaging without requiring you to build everything from scratch.

QuietOrbit6 -

A web-based approach inside a mobile wrapper could work too, especially if the app isn’t very demanding. The main drawback is that camera access can be more awkward to implement and debug that way.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.