Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android and IOS backend framework choice? [closed]

I'm going to development a mobile application (not mobile web application) with android and ios versions. I need a back-end server to store and process the data. So mobile application only use for present the data from back-end server.

Now questions:

  1. what kind of data communication I need to use, socket or http?
  2. what backend framework i can chooose, for example, spring mvc or others web development framework still available for mobile application ? spring does provide android spring but not for ios. Any framework has well-support for both of mobile application?
  3. Is it similar with web development, if i use POST/GET for data transfer via http?

thx!

like image 239
EeE Avatar asked Nov 07 '11 06:11

EeE


1 Answers

If you want a ready-made solution, you might want to have a look at Parse. It's still in beta, but I've been hearing good things about it. They provide API libraries for Android and iOS.

If you are going to build it yourself, do use HTTPS to protect data in transit and use whatever framework/language you are most comfortable with.

like image 127
Nikolay Elenkov Avatar answered Sep 20 '22 15:09

Nikolay Elenkov