1 / 13

Serious Android Developer

Serious Android Developer. Google Cloud Messaging. www.seriousandroiddeveloper.in. Overview. Google Cloud Messaging for Android (GCM) is a free service that helps developers send data from servers to their Android applications on Android devices.

ovid
Download Presentation

Serious Android Developer

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Serious Android Developer Google Cloud Messaging www.seriousandroiddeveloper.in

  2. Overview • Google Cloud Messaging for Android (GCM) is a free service that helps developers send data from servers to their Android applications on Android devices. • Message containing up to 4kb of payload data. • The GCM service handles all aspects of queuing of messages and delivery to the target Android application running on the target device. • It doesn’t necessary that your application in running state 24X7. Serious Android Developer

  3. Requirement: Application Server. Google Account. Android Phone/ emulator(Google API). Serious Android Developer

  4. Terms: Registration ID- An ID issued by the GCM servers to the Android application that allows it to receive messages. Once the Android application has the registration ID, it sends it to the 3rd-party application server, which uses it to identify each device that has registered to receive messages for a given Android application. In other words, a registration ID is tied to a particular Android application running on a particular device. Sender Auth Token- An API key that is saved on the 3rd-party application server that gives the application server authorized access to Google services. The API key is included in the header of POST requests that send messages. Sender ID- A project ID you acquire from the API console The sender ID is used in the registration process to identify an Android application that is permitted to send messages to the device. Pay Load –your data. Serious Android Developer

  5. How it works GCM Server 1.Client will send activation request, via our application 2.Client will receive response with unique Registration ID. 4.When ever server have any message for a particular device , it send the request to the GCM server using Registration ID. 5. GCM server push the data with GCM technology 3.Client need to send this Registration ID, to our app server. This registration ID is used to send data to the phone. Our Server Serious Android Developer

  6. Get access to Google Server You need to create a Google API project open the following link https://code.google.com/apis/console/ and activate GCM API service to your project Note down:1. Project Number(SENDER ID)2. API key(Sender Auth Token) Serious Android Developer

  7. Writing code at client side / android app Permission:<manifest package=“in.seriousandroiddeveloper.gcm" ...> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.GET_ACCOUNTS" /> <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" /> <permission android:name=“in.seriousandroiddeveloper.gcm.permission.C2D_MESSAGE" android:protectionLevel="signature" /> <uses-permission android:name="in.seriousandroiddeveloper.gcm.permission.C2D_MESSAGE" /> <receiver android:name=".SeriousBroadcastReceiver" android:permission="com.google.android.c2dm.permission.SEND" > <intent-filter> <action android:name="com.google.android.c2dm.intent.RECEIVE" /> <action android:name="com.google.android.c2dm.intent.REGISTRATION" /> <category android:name="in.seriousandroiddeveloper.gcm" /> </intent-filter> </receiver> Serious Android Developer

  8. Writing code at client side / android app Registration :Intent registrationIntent = new Intent("com.google.android.c2dm.intent.REGISTER"); registrationIntent.putExtra("app", PendingIntent.getBroadcast(v.getContext(), 0, new Intent(), 0)); registrationIntent.putExtra("sender", SenderID); startService(registrationIntent); Deactivation:Intent unregIntent = new Intent("com.google.android.c2dm.intent.UNREGISTER"); unregIntent.putExtra("app", PendingIntent.getBroadcast(v.getContext(), 0, new Intent(), 0)); startService(unregIntent); Serious Android Developer

  9. Writing code at client side / android app Create a Broadcaster Receiver class:SeriousBroadcastReceiver public class SeriousBroadcastReceiver extends BroadcastReceiver { public void onReceive(Context context, Intent intent) { try { String action = intent.getAction(); if (action.equals("com.google.android.c2dm.intent.REGISTRATION")) {String registrationId = intent.getStringExtra("registration_id"); String error = intent.getStringExtra("error"); String unregistered = intent.getStringExtra("unregistered"); }else if (action.equals("com.google.android.c2dm.intent.RECEIVE")) {String data1 = intent.getStringExtra(“data1"); String data2 = intent.getStringExtra(“data2"); } } finally { }}} Serious Android Developer

  10. Writing code at client side / android app • Processing (action.equals("com.google.android.c2dm.intent.REGISTRATION")) • String error = intent.getStringExtra("error") • If (error.equals.(“~~~~~~~~~”)) • SERVICE_NOT_AVAILABLE The device can't read the response, or there was a 500/503 from the server that can be retried later. The Android application should use exponential back-off and retry. • ACCOUNT_MISSING-There is no Google account on the phone. The Android application should ask the user to open the account manager and add a Google account. Fix on the device side. • AUTHENTICATION_FAILED-Bad Google Account password. The Android application should ask the user to enter his/her Google Account password, and let the user retry manually later. Fix on the device side. • INVALID_SENDER-The sender account is not recognized. This must be fixed on the Android application side. The developer must fix the application to provide the right sender extra in thecom.google.android.c2dm.intent.REGISTER intent.PHONE_REGISTRATION_ERROR-Incorrect phone registration with Google. This phone doesn't currently supportGCM.INVALID_PARAMETERS-The request sent by the phone does not contain the expected parameters. This phone doesn't currently support GCM. Serious Android Developer

  11. Writing code at Server side Server implementation is via HTTP request : To send a message, the application server issues a POST request to https://android.googleapis.com/gcm/send. A message request is made of 2 parts: HTTP header and HTTP body. The HTTP header 1.Authorization: key=YOUR_API_KEY 2. Content-Type: application/json for JSON; application/x-www-form-urlencoded;charset=UTF-8 for plain text.HTTP Body:1. registration_id2. data.<key> Serious Android Developer

  12. Join usSerious Android DeveloperfGroup www.seriousandroiddeveloper.in Serious Android Developer

  13. Serious Android Developer

More Related