How to make a long notification multiline. I am using the below code snippet but its not working:
NotificationCompat.Builder mBuilder = new NotificationCompa
Notification notification = new Notification.Builder(context) .setContentTitle(title) .setSmallIcon(icon) .setStyle(new Notification.BigTextStyle().bigText(notificationMessage)) .setAutoCancel(true) .setContentIntent(intent) .build();