Android Cloud to Device Messaging (C2DM) is a service that helps developers send data from servers to their applications on Android devices. The service provides a simple, lightweight mechanism that servers can use to tell mobile applications to contact the server directly, to fetch updated ...

learn more… | top users | synonyms

15
votes
7answers
958 views

Ways to guess if C2DM is connected

I'm trying to place a best guess estimate as to whether C2DM messages can be received. I've created an application that relies on pushing information to a phone while it is physically inaccessible. I ...
7
votes
4answers
512 views

Push notifications / C2DM for Kindle Fire?

AFAIK, push notifications require a Google account to work (they piggyback on GTalk), so does that mean for apps for the Kindle Fire are doomed if they use the standard C2DM approach? I couldn't find ...
4
votes
1answer
107 views

Phonegap and C2DM - NullPointerException

I am using C2DM together with PhoneGap. When I receive a C2DM message, I display a notification (via NotificationManager). When the user selects the notification then my application receives an ...
4
votes
1answer
161 views

android push notification to many devices at once time using google c2dm

I have successfully implemented the android push notification using google c2dm. I always send a post request for a device, and one device delay 1-2 seconds. So, if I have 1000 devices, my script will ...
4
votes
1answer
136 views

Google C2DM IPs or subnets

I need to configure my firewall settings for C2DM. Which means I need access to https://android.apis.google.com/c2dm/send https://www.google.com/accounts/ClientLogin Does anyone know which subnets ...
2
votes
4answers
126 views

Reliability of C2DM

I am having issues with C2DM. Sometimes works perfectly, sometimes my messages simply do not get pushed. Is there reliable way to enforce this connection? To pull messages. I read somewhere that what ...
2
votes
1answer
141 views

App Engine Connected Android : can't make sample project work properly

I want to make an App Engine connected Android app, and I'm beginning with google's tutorial available here : http://code.google.com/intl/fr/eclipse/docs/appeng_android_create_project.html I did ...
2
votes
2answers
175 views

Downloading Google API

I want to use C2DM service of google in order to send and receive messages in Android devices, that requires Google API level 8 or above.I have already updated my ADT Plugins(AVD Manager), but it does ...
1
vote
1answer
53 views

Push Notification in android c2dm

I'am developing a sample push notification app in android using c2dm. Here is my PHP code to send the message from server to device. function sendMessageToPhone($authCode, $deviceRegistrationId, ...
1
vote
1answer
58 views

Android C2DM Missing Registration Error?

I have implemented a C2DM client that requests the registration id from C2DM server. Once application gets registration id, applications stores device id and registration id in server database. I have ...
1
vote
1answer
56 views

How to show multi notifications in android device

I'm Navis, I come from VietNamese and I'm a newbie in android developer. When i make an application i have a problem with Notification in android. I used C2DM service to integrate push messages for my ...
1
vote
1answer
87 views

How does the c2dm application push to the Android app?

I am new in Android and trying to develop an app with push notification. I have a small confusion on the architecture behind the c2dm, that after getting the authentication token and device reg_Id, ...
1
vote
2answers
273 views

Setting up Android C2DM App Server

I've built an android application [a knowledge exchange forum, inspired by none other than stackoverflow :) ] that communicates with a remote (free) server. As of now, the application ...
1
vote
0answers
142 views

phoneGap C2DM not receiving ID

Anyone try phoneGap C2DM here? I have asked in Google group but no help. My questions is when I run the program, it shows on my phone which means I cannot get the ID from Google. The C2DMReceiver ...
1
vote
1answer
52 views

Android: C2DM Changing registration_id without notification?

So I have a situation which I didn't think would happen based on my understanding of the registration My understanding: Phone Registers with google gets registration_id, send registration_id to the ...
1
vote
1answer
115 views

C2DM VB.Net code snippet returning Error=MissingRegistration

I am using the tutorial laid out here http://www.androidsnippets.com/vbnet-server-side-code-to-send-c2dm-messages to attempt to send a message to my device. I have requested a device ID and placed ...
1
vote
1answer
196 views

C2DM Push chat application

Currenlty I am trying to develop a simple chat application for Android. I want to create something that works like WhatsApp. Because it should be realtime, I think C2DM is the best way to send a ...
1
vote
1answer
42 views

What happens when you register Android API < 8 to C2DM?

What happens when you try to register for C2DM an Android device with API level lower than 8? Will it crash the app or fail silently? Thank you!
1
vote
1answer
150 views

In Android C2DM what is Role (sender) account email?

I have searched through net about C2DM and the process of registration of android device to the C2DM is very confusing. In the code below :- Intent rI = new Intent ...
1
vote
3answers
160 views

Third party server for Push Notification

Need advice and guidance on setting up A server for Push Notification for several mobile platforms(iOS, Android, etc). I plan to run the server on Redhat Linux. What do I need for a third party server ...
1
vote
1answer
267 views

How do I get C2DM push notifications to work together with WiFi enabled?

I've done an app which uses C2DM pusn notifications. Everything works fine as long as I am connected to the GSM/3G network but when I switch to WiFi it does not always work and I do not receive push ...
1
vote
1answer
166 views

HttpWebRequest and GetResponse hangs after 1 request; other solutions doesn't work for me

UPDATED: I have found out that this is not a C2DM problem, but some problem with HttpWebRequest and its GetResponse, see comments below. /END EDIT So I have set up a connection to Googles C2DM ...
1
vote
1answer
117 views

Communication between C2DM BroadcastReceiver and multiple activities

I have an Android application which uses C2DM services (aka push). I have a separate class which implements the registration process and which receives the data (and extends BroadcastReceiver). I ...
1
vote
1answer
127 views

C2DM show notification in notification area like gmail

I have experimented with c2dm and it works adn I am getting message ( I print simple toast ). How to set notification to look the same like notification for gmail for example, to show me in ...
1
vote
1answer
102 views

Differentiate Application object from Activity and BroadcastReceiver on Android

I have an application that relies on push notifications to update users of events happening online. To do so, I have my normal Activity which displays the game to the user, and then a ...
1
vote
2answers
118 views

Trying to do C2DM service,but not getting registrationID from server

I am trying to do C2DM service in my Android app. I referring this link for help. But not able to get registrationID from C2DM server. I think it may be the issue of appID that I am sending to C2DM ...
1
vote
2answers
182 views

Android C2DM - What happens if registration ID gets refreshed

in my Application I'am currently sending a registration intent to the google server everytime the app starts. I get a different registration ID everytime I do that, though the old ones still work. I ...
1
vote
1answer
88 views

Android C2DM server side issues

I am developing a server side app to communicate with an android app that is ready for C2DM. The author or the device side app gave me a Google auth token that I use to send messages and that works ...
1
vote
2answers
67 views

C2DM Mobile Registration Phase

I am new to C2DM and would like to test. I have a question about mobile registration phrase. since we need to use Google mail account in order to get the registration ID from C2DM server, is it ...
1
vote
1answer
132 views

Some Queries on C2DM in Android

I am currently working on one android application which has C2DM implementation and I successfully implemented it. But Now I have problem in sending message to multiple devices. As per my ...
1
vote
1answer
144 views

I am not getting the app crashed in the C2DM registering process?

My app gets crashed when its in the process of registering.I have tried many possible fixes for this one but no hope.I have used php in the server side.Any help on it,the below is the code I have ...
1
vote
3answers
203 views

Android device needs to be connected to server - C2DM, polling or something third?

I'm currently in the process of developing an app which has some very demanding needs. The Project An application which can communicate with a server is needed. Small messages has to be send to the ...
0
votes
0answers
9 views

C2DM Server always send back the respond

I have implemented a 3rd party server that send a messsage to phone via C2DM server using PHP. I've did that using CURL. The problem is that every time the message has been successfully posted to the ...
0
votes
0answers
15 views

if i am using C2DM should i register always when sending data ?

When using C2DM, a device sending data to another device via server should they both register again and again whenever data transfer is required??
0
votes
0answers
12 views

How does Exchange on Android work?

Not really a programming question, but I'm currently researching battery life and PUSH notifications on Android for an assignment. I'm aware that third-party apps are able to use C2DM to be able to ...
0
votes
1answer
24 views

C2DM: What to do with registration id in the 3rd party php server?

I have setup the Android part for C2DM, and here's a part of the code: private void handleRegistration(Context context, Intent intent) { // (...) else if (registration != null) { ...
0
votes
0answers
23 views

C2DM with PHP but without cURL

I search a php script for the c2dm to register and send the message to my device. My paid server doesn't allow cURL so i searched hours on the web for a non-cURL solution, without luck. I hope ...
0
votes
2answers
37 views

C2DM quota limitation. Protocol/libraries replacements?

I noticed that Google C2DM quota is limited to 200000 messages per day. This makes me thinking that it should be used for very simple use cases. Now I understand why IM services like skype or others ...
0
votes
1answer
32 views

In PhoneGap Android C2DM BroadcastReceiver, how to call sendJavascript()

I want to pass received message from C2DM to WebView javaScript function. I think the code is below... public class C2DMReceiver extends BroadcastReceiver { .... private void ...
0
votes
1answer
18 views

How is C2DM properly used for a turn-based android game?

Got a question regarding C2DM and how it is properly used for a turn-based game (like chess). Should I create a subscription for each player, that is used to communicate with that player? Or should I ...
0
votes
0answers
48 views

C2DM handling message dont working

I am trying to use google's C2DM to receive a message from the server, I actually can register to the google server, they send me the registration code,and I also have my account with google and all ...
0
votes
2answers
45 views

C2DM - Limitation Gmail Account

It seems the C2DM is just connected to Gmail accounts, and so it cannot be used by people who doesn't have it among the accounts on the phone. Have you found a solution to bypass this limitation (I ...
0
votes
1answer
39 views

C2DM - role sender account

one simple question, and one harder: 1) can the sender ID (Gmail account) be different from the one we need to add on the phone under Settings-->Account? 2) I have to add an account automatically ...
0
votes
2answers
70 views

C2DM - How to push messages to several devices with one sender ID?

I have one single Gmail account signed up for C2DM. What I would like is that my app, thanks to this account (after having requested registration IDs and auth tokens for each device), could be able ...
0
votes
0answers
57 views

Android. C2DM Received Authentication Challenge is Null Exception

I am trying to use google c2dm to send push notifications on android device, but I have a little problem. When I am trying to send a message I get this exception "java.IOException Received ...
0
votes
0answers
81 views
+50

App Engine Connected Android Project - Libraries source attachment

I'm new to Android and App Engine, I'm trying to create an App Engine Connected Android Project, following the steps described here: ...
0
votes
1answer
33 views

C2DM - TOO_MANY_REGISTRATIONS

I know that one user account registered to C2DM can handle up to 100 apps with C2DM. My question is this: Can the registered user handle more than 100apps spread on different devices? I want to have ...
0
votes
1answer
51 views

Android C2DM unable to link client and server

I have referred Vogella Tutorial for Android C2DM and implemented client and server as follows. I've problem with 3 URL's used in application, 1 in client and 2 in server. In place of 1st URL, there ...
0
votes
0answers
48 views

C2DM java example of third-part app

I'm trying to do example form: http://www.vogella.de/articles/AndroidCloudToDeviceMessaging/article.html I've got everything allright with android app (I think), but to simulate the server i all the ...
0
votes
1answer
60 views

App Engine Connected Android project C2DM connection error

I am currently trying to make an Android App that communicates with Google App Engine. After installing the plugin for Google App Engine, I was just trying to see if the C2DM connection works on the ...

1 2