I use this plugin to have local notification : https://github.com/katzer/cordova-plugin-local-notifications/wiki/03.-Installation
I want to have a specific icon in
For Local push notification of ionic 2 plugin you can set the icon like below. Here icon.png will be taking from the drawable folder in android. And you can configure ionic to copy the local image file to drawable folder by adding lines mentioned below in config file under android platform section.
this.localNotifications.schedule({
id: 1,
title: data.title,
text: data.body,
data: data,
icon: "res://icon.png",
smallIcon:"res://icon.png"
});