angular - Push notification icon is different for different phones -


in ios , android phones push notification using normal image more xxxhdpi density showing transparent image need show same image in android phone please me on issue.

<icon src="resources/android/icon/drawable-ldpi-icon.png" density="ldpi"/>  <icon src="resources/android/icon/drawable-mdpi-icon.png" density="mdpi"/>  <icon src="resources/android/icon/drawable-hdpi-icon.png" density="hdpi"/>  <icon src="resources/android/icon/drawable-xhdpi-icon.png" density="xhdpi"/>  <icon src="resources/android/icon/drawable-xxhdpi-icon.png"        density="xxhdpi"/>  <icon src="resources/android/icon/drawable-xxxhdpi-icon.png"        density="xxxhdpi"/>  <hook src="scripts/android/copy_res.sh"        type="before_build" /> 


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -