Mobile development / architecture: re-web application?

We create a web application as solution No. 1, but in the end we want to complement it with a mobile application, but I don’t understand when you use mobile frames (for example, Titanium, PhoneGap, etc.), you just add a mobile compatible level that interacts with the core of the web application? In other words, will the kernel (all my classes, logic, etc.) serve for a mobile application? Or do I need to write a completely separate mobile application (logic and all)? I use MVC for the web application, so I hope I can reuse as much MC as possible and just use the mobile infrastructure for V. All thoughts / help are greatly appreciated. Thanks!

+4
source share
1 answer

Yes, you can reuse your logic from webapp in your mobile application.

You say that you follow MVC, then, as I think, you can reuse most of the model and controller logic, only the view is the thing that will be changed.

0
source

All Articles