how to make online app

hey guys i want to make an app or you can say an online app.i want my app to be like eCommerce site for example someone post a picture of any product that pictures are showed to us.But i want only i can upload data and that data has be showed on other devices inside my app.How i can do that.someone help me.

Thanks in Advance.

for that you need to learn android you dont need unity for that. just got stackoverflow or github you will find what you want.unity is for game development not for app development .@shubham5577

I do not believe Unity is strictly for game development. I think it depends on the product being created. If users feel that the benefits of the product are worth the wait time for loading and will not be spending a lot of time in the app so battery usage doesn’t matter, then there are some interesting things that a developer can do with Unity that cannot be done with an app.

Through the use of such a platform, you as the admin are able to build the app where only you are authorized to upload information (such as product pictures and details) and then make it accessible to the other users on their devices. In order to set in motion, you should first build a backend system that will run the data (the images, product details, etc.). Store the files and database via a cloud service such as Firebase or AWS. The app itself could be built with a customizable framework like React Native and Flutter (read more about frameworks Top 8 Frameworks for Building Hybrid Apps in 2024 - Software Development CompanySoftware Development Company )which provides cross-platform compatibility including iOS and Android. You are going to have to implement user authentication and authorization to make sure that you are the only one who can upload information. Compute the data that is stored in the server and show the results on the users’ screens on the front end. Actually, it will be done by setting up a server-side API that stores data and handles image uploads and retrieval, and a mobile app that gets and displays this data in a user-friendly way.