11

Hello I am going to develop an app like "AirDroid" on Android Market which connect a device with the PC using wireless communication.

Can anybody explain to me how this app works? Is Internet required for that or not? and from where that window which display the content of the device in PC, comming from to explore the Device?

Is it Internet required for that or any server manages that?

Thanks.

Sagar Sakre
  • 2,336
  • 22
  • 31
Shreyash Mahajan
  • 23,386
  • 35
  • 116
  • 188
  • 3
    Sorry if this sounds dumb, but are you really asking us to explain an app **you** that **you** want to develop? This is silly! Also your sentences need improvements as it is hard to understand the second paragraph... – WarrenFaith Mar 06 '12 at 11:37
  • @WarrenFaith : Sorry regarding my language. But in this app we can able to see our Mobile Data in to PC. and the graphics of the PC also fit to screen and good like any other Computer Software. Thats why i thaught that some data might be comming from the internate. So i want to know its whole process if any one know. Thanks for the reply. – Shreyash Mahajan Mar 07 '12 at 06:42
  • @WarrenFaith: i have close the internet and then try. But in that condition also the app is going to work. – Shreyash Mahajan Mar 07 '12 at 09:27

2 Answers2

14

AirDroid is server application based on lightweight PAW Server: http://paw-android.fun2code.de/. I think that the used framework is your main question, isn't it?

Another server you might want to try is Jetty: http://code.google.com/p/i-jetty/

Have fun ;)

Michal Vician
  • 2,486
  • 2
  • 28
  • 47
5

actually air droid starts a http server on your phone just like apache does on your computer. ALL THE graphic that you see you can actually retrive from the app itself it doesnt uses internet. You can extract that graphic from the app just by using a zip opener to open the .apk file. It mainly uses client side scripting for exmple javascript.

ROHILSURANA
  • 51
  • 1
  • 2