Android Question Cross platform mobile notification

luke2012

Well-Known Member
Licensed User
Longtime User
Hi All,
Is there a cross platform framework that allow me to coding a push notification within a B4A App and reuse the code (as it is) within a B4i App ?

Thank you in advance for your help :)
Luca.
 

luke2012

Well-Known Member
Licensed User
Longtime User
@Erel I followed the tutorial, but probably there was I misunderstanding.
I need to show a notification within the app (B4A & B4i) not from a console. I don't need to spread a push message from a server to all "subscribed" devices but I need to programmatically show a system notification (Android & iOS) from a B4XPages App.

I found this within the community:

I'm interested to implement a simple notifications (with the built-in Notification object).
I need to do the same thing within the B4i App (I'm developing a B4XPages App).
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
B4X:
#If B4A
' Do work with the B4A Notificationobject and/or NotificationBuilder
#End If
#If B4I
' Do work with the B4I notification Object
#End If
 
Upvote 0
Top