javapalava
javapalava

Reputation: 695

Integrating Google Cloud Messaging into Android App - GCM Connection Server

I'm learning android app development, and undertaking a project for educational purposes.

I'm building an app that is like a memory scrapbook - the user can curate scrapbook pages with images imported from their image library, and add written text. There is no server, and the data is stored in XML files.

I've now been tasked with adding a new feature - the ability for users of the app to send each other text based messages to add to a scrapbook page.

I've looked into the Google Cloud Messaging service, and integrating it with my app. I've read that this would involve setting up an application server, to send data via a HTTP or XMPP protocol.

I feel just about proficient enough in java to do the project with the guidance of tutorials, but have no knowledge or experience of servers, or communication protocols.

Can somebody guide me on what is involved in setting up an application server? Or point me in the direction of a tutorial where I can learn more.

Would it involve modifying the way my app currently stores data?

Are there any inherent issues with security that would need to be considered?

And this is highly speculative, but is it feasible for a beginner to undertake in 4 weeks?

Upvotes: 0

Views: 44

Answers (1)

AmkSk
AmkSk

Reputation: 36

Try to look at the new Firebase service from Google. It is the replacement of the old GCM.

What is firebase: https://firebase.google.com/features/

Android quickstart guide: https://www.firebase.com/docs/android/quickstart.html

Upvotes: 2

Related Questions