Home > Software engineering >  I want to create an application for Android as well as for the Web Desktop version) on the same time
I want to create an application for Android as well as for the Web Desktop version) on the same time

Time:09-21

I want to ask that I am building a project which will require the android application as well as the web version for the application which will run on desktop computers or laptops.

I am confused that which technology I should use to ease my work. After searching on google I have found that react native will also make the app compatible with the web but I am confused whether it would be compatible for browsers on the PC's or not?

Your quick expert opinions are welcomed and much appreciated.

CodePudding user response:

Expo support building for all Platforms at the same time https://snack.expo.dev/

Unfortunately the support for all platforms is limited and there are some extra work todo, but in general expo it will work.

CodePudding user response:

You have 2 options with react:

1- (Recommended) Using reactjs and develop a webapp with mobile first UI. and use PWABuilder to make an android release for moblie apps.

2- Using react-native for all platforms e.g. iOS, Android and Windows! Please see this for mobile apps and this for windows

  • Related