I use this code to setup a notification
But now i have a problem because i want to show this notification to user device once a week and i dont know where to start. Thank you!
B4X:
Dim x As Notification
x.Initialize
x.Icon = "icon"
x.AutoCancel=False
x.Sound=True
x.Vibrate=True
x.SetInfo("TITLE","SUBTITLE","")
x.Notify(1)
But now i have a problem because i want to show this notification to user device once a week and i dont know where to start. Thank you!