Deprecated API


Contents
Deprecated Classes
com.netmera.mobile.BasePush
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. BasePush class is an abstract class to implement different channel notifications like NetmeraIOSPush, NetmeraAndroidPush and NetmeraPush By the help of these classes push notifications can be send different channels. 
com.netmera.mobile.NetmeraAndroidPush
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. NetmeraAndroidPush class is used to send push notifications into only Android devices from current device.

NetmeraClient("your_api_key");
NetmeraAndroidPush push = new NetmeraAndroidPush();
push.setMessage("This is the message that will be sent as a notification");
push.sendNotification();
 
com.netmera.mobile.NetmeraIOSPush
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. NetmeraIOSPush class is used to send push notifications into only IOS devices from current device.

NetmeraClient("your_api_key");
NetmeraIOSPush push = new NetmeraIOSPush();
push.setMessage("This is the message that will be sent as a notification");
push.sendNotification();
 
com.netmera.mobile.NetmeraPush
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. NetmeraPush class is used to send push notifications into devices from your application.

NetmeraClient("your_api_key");
NetmeraPush push = new NetmeraPush();
push.setSendToIos(true);
push.setSendToAndroid(true);
push.setMessage("This is the message that will be sent as a notification");
push.sendNotification();
 
com.netmera.mobile.push.NetmeraPushInboxDataController
            
com.netmera.mobile.push.Push
            
 

Deprecated Methods
com.netmera.mobile.BasePush.addDeviceGroup(String)
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. Adds a device group to the device group list. 
com.netmera.mobile.BasePush.getDeviceGroups()
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. Use to get device groups that the notification will be sent. 
com.netmera.mobile.NetmeraDeviceDetail.getDeviceGroups()
           
com.netmera.mobile.NetmeraPushService.getDeviceGroups()
           
com.netmera.mobile.NetmeraPushService.getDeviceGroups(int, int)
           
com.netmera.mobile.NetmeraPushService.getDeviceGroupsInBackground(int, int, NetmeraCallback>)
           
com.netmera.mobile.NetmeraPushService.getDeviceGroupsInBackground(NetmeraCallback>)
           
com.netmera.mobile.BasePush.getMessage()
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. Get push notification message 
com.netmera.mobile.BasePush.getParameter()
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. Get parameter (custom data) on the notification. 
com.netmera.mobile.BasePush.sendNotification()
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. 
com.netmera.mobile.NetmeraAndroidPush.sendNotification()
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. Sends notification to Android devices. 
com.netmera.mobile.NetmeraIOSPush.sendNotification()
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. Sends notification to IOS devices. 
com.netmera.mobile.NetmeraPush.sendNotification()
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. Sends notification to IOS and Android devices. 
com.netmera.mobile.NetmeraPushService.sendNotification(List)
          use NetmeraPushSender to send push messages. Sends notification to IOS and Android devices. 
com.netmera.mobile.BasePush.setBoxPush(NetmeraGeoLocation, NetmeraGeoLocation)
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. Creates box using the given two location (latitude,longitude) data in order to send push notifications to devices registered inside that box. 
com.netmera.mobile.BasePush.setCirclePush(NetmeraGeoLocation, double)
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. Creates a circle by taking given location as a base and the distance as the radius in order to send push notifications to devices registered inside that circle. 
com.netmera.mobile.BasePush.setDeviceGroup(String)
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. Set device group with just one device group. If there is any device group in the list before calling this method, they will be deleted. 
com.netmera.mobile.NetmeraDeviceDetail.setDeviceGroup(String)
           
com.netmera.mobile.BasePush.setDeviceGroups(List)
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. Use to specify which device groups you want to send this notification. 
com.netmera.mobile.NetmeraDeviceDetail.setDeviceGroups(List)
           
com.netmera.mobile.BasePush.setMessage(String)
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. sets notification message 
com.netmera.mobile.BasePush.setParameter(JSONObject)
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. Set parameters on the notification. You can check Android Guide for info about how to use this data. The size of the data on a notification should not exceed 4kb. 
com.netmera.mobile.NetmeraPush.setSendToAndroid(boolean)
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. 
com.netmera.mobile.NetmeraPush.setSendToIos(boolean)
          use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification.