I am using PushBots to send push notifications to my Android App. Through the payload, I am able to set the largeIcon bitmap and change the title etc however I am unsure on how to change the notification icon (or smallIcon) that appears in the status bar.
At the moment it is just a white square on Android 5.0+ and below that, it uses the launcher icon.
I have imported my transparent icon in Android Studio as a notification which created the "ic_stat_name" drawable for the white icon.
However as I am using pushbots, I don't actually have any notification code that uses the Notification constructor. All I'm doing in my MainActivity is initializing PushBots and sending the Registration ID to my database. Other similar questions all have some sort of Notification code already present within their project.
How should I go about changing the icon from the square to the white icon? Someone with knowledge of PushBots may be able to help out here