I setup up a Parse Server on my Windows 10 machine and created a simple app,using Xamarin and Visual Studio 15 that connects to the parse server. I then wanted to create a push notification to send messages to Android devices via the Parse Dashboard.
I followed the following tutorials: https://github.com/ParsePlatform/Parse-Server/wiki/Push
After following these tutorials, setting everything up as per: github ParsePlatform =>Parse-Server =>wiki Push I then tested it by first running my app on visual studio, with the Android device connected to the windows machine, going onto my local Parse Dashboard, going to "Push" and "send a new push". It saved the message but did not send it to my Android device. It also did not report any errors in the log files.
Now I am unsure what the problem could be. Can anyone please advise or offer suggestions to fix this problem? My Android Manifest file looks identical to the one in the tutorial, except with my package name and sender ID filled in. My OnCreate() just has the one line of code:
ParsePush.ParsePushNotificationReceived += ParsePush.DefaultParsePushNotificationReceivedHandler;
Any small help help will be greatly appreciated!