Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm a newbie Android Developer, and my app requires that it interacts with a server.

I came across Google AppEngine, and find it to be a good choice for this app.

If I code my Android app in Java, and do the server coding for Google AppEngine in Python, will my Android App be able to communicate with the server?

I mean will this Java (client) + Python (server) combination work well?

share|improve this question

closed as not a real question by alextsc, njzk2, Mudassir, Andro Selva, Wooble Sep 10 '12 at 11:36

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

The communication with your server can be totally independent of the languages used on the server and client end.

Typically web applications use principles such as REST to communicate. This is why your browser runs using HTML and JavaScript and your server can be using anything, including python.

It really depends on what you need your server to do for your app.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.