Hi guys,
I’am currently implementing push notifications with game thrive in my app. But the problem is I don’t know how to use an icon for my notifications. According to the game thrive api documentation you should insert “small_icon” etc. to your parameters. The question is: Can I use icons wich are in my app folder or wich path is assumed here?
I tried the following but have no clue what to do here:
$fields = array( 'app\_id' =\> "xxxxxxxxxx", 'include\_player\_ids' =\> $playerIDs, 'isAndroid' =\> true, 'contents' =\> $content, 'data' =\> $data, 'small\_icon' =\> "assets/avatars/2.png" //this is the path I use in my app );
Thank you
Markus