Hi all,
I have the following notification:
When the notification is fired and the user clicks on it, it needs to run an activity. So I read in the documention to use the following code in the activity resume:
The problem is that it doesn't do anything. Do I something wrong?
I have the following notification:
B4X:
myNotification.SetInfo2("Welcome", "Welcome", "tagtest", "Main")
When the notification is fired and the user clicks on it, it needs to run an activity. So I read in the documention to use the following code in the activity resume:
B4X:
Dim in As Intent
in = Activity.GetStartingIntent
If in.HasExtra("tagtest") Then
Log(in.GetExtra("tagtest")) 'Will log the tag
End If
The problem is that it doesn't do anything. Do I something wrong?