1

So I'm using the Parse component from the Xamarin store in my MonoDroid app. So I was able to use the following code to store an object

ParseClient.Initialize ("appid", "windowskey");

var obj = new ParseObject("Note");
obj ["text"] = "Hello, world!  This is a Xamarin app using Parse!";
obj ["tags"] = new List<string> {"welcome", "xamarin", "parse"};
obj.SaveAsync ();

My real goal is to be able to do push notifications. Even though the above object stored, Parse did not register the device in the installations to be able to send push notifications. What else am I missing. Note: I'm doing this in the emulator but if i'm not mistaken it still should work.

4

1 に答える 1