gsach
gsach

Reputation: 5775

iPhone and Android game server

I have to make a game for both iPhone and Android platforms. So, i need:

I have read various questions on stackoverflow and i have some concerns about the solutions available.

Upvotes: 2

Views: 2890

Answers (3)

Jamund Ferguson
Jamund Ferguson

Reputation: 17014

node.js lets you do fancy games servers pretty easily, using most any protocol you'd want to use. Socket.io is a layer on to of node.js that uses web-sockets, but their are android/iphone clients. It's pretty great at real-time stuff.

Some links for you:

As for Push Notifications, they're a good idea, but they're a little slow in my opinion. They may be necessary though if you want people to get notifications that don't have the app open.

Upvotes: 0

Sander Versluys
Sander Versluys

Reputation: 74467

Instead of rolling your own use a service like Parse or Urban Airship:

https://www.parse.com/

http://urbanairship.com/

They do an amazing job providing a cross platform push solution.

Upvotes: 3

kikoso
kikoso

Reputation: 708

Instead of polling, you could use C2DM for Android and Apple Push Notification Service for iPhone.

http://code.google.com/intl/de-DE/android/c2dm/

http://en.wikipedia.org/wiki/Apple_Push_Notification_Service

Upvotes: 0

Related Questions