S Smee Well-Known Member Licensed User Longtime User Jun 6, 2017 #1 Apparently a png image can be sent using firebase messaging. Does the current library allow for this and if so are there any docs on how to implement. Many thanks
Apparently a png image can be sent using firebase messaging. Does the current library allow for this and if so are there any docs on how to implement. Many thanks
Erel B4X founder Staff member Licensed User Longtime User Jun 7, 2017 #2 You can add any field you like to the data map. The image itself is not sent in the message payload in this screenshot, only its url. Upvote 0
You can add any field you like to the data map. The image itself is not sent in the message payload in this screenshot, only its url.
KMatle Expert Licensed User Longtime User Jun 7, 2017 #3 FCM messages are limited to 4 KB (or so). Using links is a good idea. You can download the image via OkHttpUtils (search the forum for that) when the message arrives. Upvote 0
FCM messages are limited to 4 KB (or so). Using links is a good idea. You can download the image via OkHttpUtils (search the forum for that) when the message arrives.
S Smee Well-Known Member Licensed User Longtime User Jun 7, 2017 #4 Thanks for clearing that up guys Upvote 0