App Engine Connected Android App
Problem with the new App engine connected android application projects for the google eclipse plugin? This is the 'Big Daddy' sample shown at goolge i/o 2011. My sample project com
Solution 1:
I found this question by wondering the same thing, if the c2dmUrl being null is a problem. It would seem that this is not an issue though. If you look at the C2DMConfig (the entity that you are referencing), there is a function called "getC2DMUrl". Here it is:
publicStringgetC2DMUrl() {
if (c2dmUrl == null) {
returnDATAMESSAGING_SEND_ENDPOINT;
} else {
return c2dmUrl;
}
So null is a supported value for this. If a specific URL isn't specified, it simply returns it to the default.
Post a Comment for "App Engine Connected Android App"