GCM - Online PushNotification For Android.
Only send Text send.
Register with App42 platform
2. Start building
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- App42API.initialize(this,"<YOUR API KEY>","<YOUR SECRET KEY>");
- App42API.setLoggedInUser("<Logged In User>") ;
- Util.registerWithApp42("<Your Google Project No>");
- }
If you want to go in detail about the sample code, please see App42GCMService.java which does all GCM related work like registering with GCM and App42 server and generating notification. This class overrides GCMBaseIntentService class and overrides onMessage and onRegister method. Once your app gets registered with GCM, its onRegister method gets invoked, which further calls registerWithApp42 method defined in the class as shown below
- @Override
- protected void onRegistered(Context arg0, String regId) {
- Log.i(TAG, "Device registered: regId = " + regId);
- registerWithApp42(regId);
- }
- //Method to get registered with App42 Platform
- private void registerWithApp42(String regId) {
- App42Log.debug(" Registering on App42 Server ....");
- App42API.buildPushNotificationService().storeDeviceToken(App42API.getLoggedInUser(), regId, new App42CallBack() {
- @Override
- public void onSuccess(Object paramObject) {
- App42Log.debug(" ..... Registration Success ....");
- GCMRegistrar.setRegisteredOnServer(App42API.appContext, true);
- }
- @Override
- public void onException(Exception paramException) {
- App42Log.debug(" ..... Registration Failed ....");
- App42Log.debug("storeDeviceToken : Exception : on startup " +paramException);
- }
- });
- }
Android Manifest Settings
Following Permissions and entries are required to integrate Push Notification in your project. Sample Android Manifest contains these entries already however if you are integrating in your existing project put these lines in your Manifest too. You have to replace <YOUR_APPLICATION_PACKAGE_NAME> with the value of your package name. For example if your application package name is com.abc.myapp, you have to use it in place of <YOUR_APPLICATION_PACKAGE_NAME> defined in below Manifest- <uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.VIBRATE" />
- <uses-permission android:name="android.permission.WAKE_LOCK" />
- <uses-permission android:name="android.permission.GET_ACCOUNTS" />
- <uses-permission android:name="android.permission.WAKE_LOCK" />
- <uses-permission android:name="<YOUR_APPLICATION_PACKAGE_NAME>.permission.C2D_MESSAGE" />
- <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
- <permission
- android:name="<YOUR_APPLICATION_PACKAGE_NAME>.permission.C2D_MESSAGE"
- android:protectionLevel="signature" />
- <receiver
- android:name="com.example.app42sample.App42GCMReceiver"
- android:permission="com.google.android.c2dm.permission.SEND" >
- <intent-filter>
- <action android:name="com.google.android.c2dm.intent.RECEIVE" />
- <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
- <category android:name="<YOUR_APPLICATION_PACKAGE_NAME>" />
- </intent-filter>
- </receiver>
- <service android:name="com.example.app42sample.App42GCMService">
- <meta-data android:name="onMessageOpen"
- android:value="<ACTIVITY_TO_BE_OPENED_ON_MESSAGE_CLICK>" />
- </service>
3. Sending Message to User
Once your app is registered you are ready to send message to your app user using following code snippet from any App42 SDK (Android/Java/WP etc)From API
- PushnotificationService pushnotificationService = App42API.buildPushnotificationService();
- PushNotification pushNotification = pushNotificationService.sendPushMessageToUser(userName,message);
you can also send push messages to your registered app user directly from AppHQ console. To do this, go to AppHQ console and click on Push Notification -> Click on User Link -> Select your App -> select your user from table and click on send message button. This will open a pop up to type your message, once you are done click on send button. This will trigger a push notification message to your app user.
4. Sending Message to iOS Device with Sound and Badge
If you want to send push message with sound and badge effect on iOS device, you have to pass JSON string in below format- PushnotificationService pushnotificationService = App42API.buildPushnotificationService();
- String userName = "Nick";
- //Message format for iOS device with sound and badge
- String messsage = "{'alert':'Hi There...','badge':1,'sound':'default'}";
- PushNotification pushNotification = pushNotificationService.sendPushMessageToUser(userName,message);
5. Sending Message to Channel
App42 Push notification also supports channel subscription model where user can subscribe on channel of his interest to receive the notification. You can send message to channel which will deliver message to all users who are subscribed to that channel. A channel can be created from AppHQ console. Go to Push Notification ->Channel -> Select your App -> Click on Create Channel buttonOnce channel is created you can ask user for subscription on the channel. Below is the code snippet for the same
- //
- // First Subscribe User to Channel
- //
- String channelName = "cricket channel";
- String username = "Nick";
- PushNotification pushNotification = pushServiceNotification.subscribeToChannel(channelName,username);
- //
- // Now send message on the Channel
- //
- String channelName = "cricket channel";
- String message = "Mumbai Indians won IPL 6";
- PushNotification pushNotification = pushNotificationService.sendPushMessageToChannel(channelName,message);
6. User Segmentation (Applying Filter)
App42 Push Notification Service has introduced API to target users who have specific profile/preference. This API requires user preference or profile persistence in Storage Service as a prerequisite. To identify a specific user segmentation, your app user profile or preference information should be saved on App42 cloud e.g. if you are building a music streaming app and you want to send push notifications to all those users who like Rock music, you should have preference of user stored in App42 cloud already and it can be done using Storage Service as shown below.Saving User Preference
- //Set Logged in User Name
- App42API.setLoggedInUser("USER_NAME");
- String profileJSON = "{\"preference\":\"Rock\",\"age\":30,\"company\":\"ShepHertz\"}";
- StorageService storageService = App42API.buildStorageService();
- storageService.insertJSONDocument("DB_NAME", "COLLECTION_NAME", profileJSON );
Once your app user’s profile/preference information is saved, you can send Push Notification to the segmented user who meets specific criteria (Assuming your app user is already subscribed for push notification. For example, here you can send Push Notification to segmented users who likes Rock music as explained below.
- Query targetQuery = QueryBuilder.build("preference","Rock", Operator.EQUALS);
- String message = "New Album of Rock Music has just Arrived. Please check it out here!!";
- PushNotificationService pushNotificationService = App42API.buildPushNotificationService();
- pushNotificationService.sendPushToTargetUsers(message, "DB_NAME", "COLLECTION_NAME", targetQuery);
7. Scheduling Message to User
You can also schedule message to your app user on specified time from AppHQ console. To do this, got to Push Notification -> Click on User link -> Select your app -> select target users/device and click on schedule message button. Now type your message in pop up and pass your time to schedule the message.8. Scheduling message to Channel
Message scheduling on channel can be done in similar way. Go to Push Notification -> Click on Channel link -> Select your app -> select target channel and click on schedule message button. Now type your message in pop up and pass your time to schedule the message.9. Configuring Notification UI
Push notification received on user device can be configured and can be controlled from the code written in generateNotification method as shown below- Notification notification = new NotificationCompat.Builder(context)
- .setContentTitle(title)
- .setContentText(message)
- .setContentIntent(intent)
- .setSmallIcon(icon)
- .setWhen(when)
- .setLargeIcon(getBitmapFromURL(LARGE_IMAGE_URL))
- .setLights(Color.YELLOW, 1, 2)
- .setAutoCancel(true)
- .build();
10. Opening Activity on Message Click
You can specify which Activity should be opened once user clicks on message. Its configured inside AndroidManifest.xml as shown below- <service android:name="com.example.app42sample.App42GCMService" >
- <meta-data android:name="onMessageOpen" android:value="com.example.app42sample.MessageActivity" />
- </service>
11. Doing Push Analytics
Push notification goes from App42 server to GCM server and then device. Delivery of Push notification is not guaranteed from GCM to device and it is stated as best effort. Once it is delivered on user device, there might be a chance that user clears it without actually Opening the message.Using App42 Push Analytics, you can track how many push notification was sent from your side, how many were delivered and how many were opened by the user. You can see these analytics from AppHQ console which will give a better insight of push notification campaign.
If you want to track push message read/opened event you have to simply put following snippet after Message is clicked and lands to your activity. This will enable tracking of push message and analytics can be seen from AppHQ console.
- App42API.buildLogService().setEvent("Message", "Opened", new App42CallBack() {
- public void onSuccess(Object arg0) {
- // TODO Auto-generated method stub
- }
- public void onException(Exception arg0) {
- // TODO Auto-generated method stub
- }
- });
Comments
Post a Comment