Posts

Showing posts from December, 2013

Nuget Package for Push Notification on Android and iOS

Continue to my previous post for Push Notification, I have generated a simplified process to implement Push notification for iOS and Android. Anyone can download my Nuget package from https://www.nuget.org/packages/EasyPushNotification/ To install Push Notification for Android and iOS, run the following command in the   Package Manager Console PM> Install-Package EasyPushNotification Web.config settings Add following keys into AppSettings into web.config file. <appSettings> <add key="APIKey" value="SOME_API_KEY"/> <add key="ApnsCertPath" value="CERTIFICATE_PATH"/> <add key="ApnsCertPassword" value="CERT_PASSWORD"/> </appSettings> For Android APIKey    is API key provided by GCM server. Follow the steps from here to generate project and obtain API key. The generated Project ID will be used to generate Device Token from Android devices. For iOS ApnsCertPath ...