0

I am unable to change deprecation from the methods below I am using API level 19. Can you please help me out with this issue?

Notification notification = new Notification(icon, message, when);
 ......
notification.setLatestEventInfo(context, title, subTitle, intent);

Actually I tried Notification.Builder but not getting proper output can you guys show how to use Notification.Builder for above 2 statements. Thanks.

user3057567
  • 147
  • 2
  • 2
  • 12

1 Answers1

2

From http://developer.android.com/reference/android/app/Notification.html:

This method was deprecated in API level 11. Use Notification.Builder instead.

EJK
  • 12,332
  • 3
  • 38
  • 55