I\'m doing a project in Android. I can successfully receive push notifications.
How to turn on the lights when I receive the push notification?
And also I
please Add this code in set Notification method
notification.flags |= Notification.FLAG_AUTO_CANCEL; notification.defaults |= Notification.DEFAULT_SOUND; notification.defaults |= Notification.DEFAULT_LIGHTS; notification.defaults |= Notification.DEFAULT_VIBRATE;