Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
How to use Cordova Push Notification Plugin with Google Firebase Cloud Messaging
Cordova push plugin with firebase is used to send notifications in both android and iOS devices. This plugin can be used for Cordova applications with Google Firebase FCM. You can send notifications to one or multiple devices with this plugi...
UINotification in iOS10, Swift 3.0
To implement Notification in iOS 10, follow below steps.
Go to Project -> Target -> capabilities -> push notifications
enable push notification.
Now in Your AppDelegate Class do following steps -
1. Import UserNotifications.
2...
Use vibrancy effect in UITableViewCell like notification center.
1. It is must to import “NoticationCenter” so that we can use “notificationCenterVibrancyEffect”
import NotificationCenter
2. At the time of cell selection do following code in delegate method...
How to create notification in android.
1) To create notification UI content and action we make use of NotificationCompat.Builder object and Builder object must include the following:-
Small icon that would be shown when your notification will arrive at your device and it i...
Push Notification for iphone using laravel 4.x
There are few steps which we have to follow to implement Push Notification.
Step 1: First we will write the api to get token and device type . Here is the controller code of push notification.
public function pushNotification() {
$...
Push Notification for Android using Laravel 4.x
There are few steps which we have to follow to implement Push Notification.
Step 1: First we will write the api to get token and device type . Here is the controller code of push notification.
public function pushNotification() {
$...
stop GCM notification
sometime its necessary to stop or unregister notification services in your app like from your setting screen then you can use these codes.
you have to create a static handler in your gcm register class
static Handler myHandler;
and in...
How to check Push Notification enabled in iOS
For your iOS application if you want to check Push Notification status then you can check it by using the below code:-
in iOS 7
UIRemoteNotificationType types = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
if (types ...
How to get device token in iOS
For iOS push notification services functionality we need a device token (a unique device id generated by device OS for Push Messages communications) on which we can receive push notification messages. To generate the device token we have to add U...
How to test Push Notifications manually in any mobile application?
Push Notification are the messages or information that are sent to users who have opted-in to receive them. For this, end user must opt-in to receive the alerts. 'Notification' means providing information. The use of push notifications in mobile ...
How to send Push notification on Android mobile
If you want to send push notification on Android mobile please use the below function:
Requirement :: a) Mobile TokenId
b) Google API Key
public function send_notification_mobile($mobiletokens, $GOOGLE_APIKEY){
// API ac...
Push Notification - Android using GCM
This post will help you to send push notification to Android devices using server side scripting language called php.
click below Link to get Google cloud messaging api-
https://console.developers.google.com/project
Here is a code to send...
Push Notification in iOS8 and other versions
PushNotification code for Latest iOS8 and earlier versions.
You need to find out the iOS version first. Use below Macro keys for iOS check:-
#define IS_iOS7 [[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0?YES:NO
#define IS_...
Send Push Notification to iPhone device from Java Server Side
This blog will help you to send Push Notifications to iPhone devices from server side where server side code is written in Java.
Follow the below code in order to send Push Notification:
Define the below dependency in you pom.xml, if you...
Passing extra data with push notification
Sometime we do need to send additional data while sending Push-notification on iPhone , this can be easily achieved by adding following line to your code. But one should keep in mind that apple does have a limitation of 144 character while sendin...
Send Push Notification to Android Devices from Java Server Side
This blog will help you to send Push Notifications to Android devices from server side where server side code is written in Java.
Follow the below steps in order to send Push Notification:
Put the gcm-server.jar into your lib folder of y...
iphone and Android Push Notification API
Push notifications are messages that allow an app to notify of a message similar to how a text message pops up on your screen with a sound.
Code for Android ,Iphone API push notification is given below by using urbanairship.
1.Android Push No...