Uses of Class
com.netmera.mobile.BasePush

Packages that use BasePush
com.netmera.mobile   
 

Uses of BasePush in com.netmera.mobile
 

Subclasses of BasePush in com.netmera.mobile
 class NetmeraAndroidPush
          Deprecated. 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();
 class NetmeraIOSPush
          Deprecated. 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();
 class NetmeraPush
          Deprecated. 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();