Skip to content

Commit

Permalink
Change RemoteNotifications *server_id to sender_id (#919)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark McLemore committed Oct 29, 2015
1 parent 8f24c77 commit 13c9f99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RemoteNotifications/ClientApp/RegistrationIntentService.cs
Expand Up @@ -30,7 +30,7 @@ protected override void OnHandleIntent (Intent intent)
{
// Request a registration token:
var instanceID = InstanceID.GetInstance(this);
var token = instanceID.GetToken("YOUR_SERVER_ID",
var token = instanceID.GetToken("YOUR_SENDER_ID",
GoogleCloudMessaging.InstanceIdScope, null);

// Log the registration token that was returned from GCM:
Expand Down
2 changes: 1 addition & 1 deletion RemoteNotifications/README.md
Expand Up @@ -6,7 +6,7 @@ This sample app accompanies the article
Before you can use this sample, you must acquire the necessary
credentials to use Google's servers; this process is explained in
[Google Cloud Messaging](http://developer.xamarin.com/guides/cross-platform/application_fundamentals/notifications/android/google-cloud-messaging).
In particular, you will need an *API Key* and a *Server ID* to insert
In particular, you will need an *API Key* and a *Sender ID* to insert
into the example code before it can connect to GCM.

Most of the action takes place "behind the scenes", and is to be
Expand Down

0 comments on commit 13c9f99

Please sign in to comment.