🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

questions about google play services

Started by
1 comment, last by hplus0603 6 years, 7 months ago

I'm not sure u chose right place. if its wrong please change it.

 

hi.

I have 2 questions about google play services.

1) is there any restrictions or limitations for 25 dollar developer? for example in number of request sent to their cloud or number of players of in real time or turn based games?

 

2) as I know there is a file system that you can send bytes to be saved on google cloud as player progress or... in my game there is a lot of levels and for every levels there is some records and .... powerups, characters and so many other things. is it more standard to send and receive all at once as on file request or its better to choose many files on cloud?

Advertisement

Yes, there are rate limits.

I think the default request limit is 200,000 requests per day.

You can read more about it here

https://developers.google.com/games/services/checklist#8_quota_and_rate_limiting

Note that, typically, the amount of requests from your game will be proportional to the amount of players you have, and once you have many players, you will presumably make lots of money, and Google will take their cut on all of those purchases, and thus everything will be fine.

enum Bool { True, False, FileNotFound };

This topic is closed to new replies.

Advertisement