L liulifeng77 Active Member Licensed User Longtime User May 19, 2017 #1 when I clicked a notify message, it runs these code: Sub Activity_Resume StartService(PushService) Dim in As Intent in = Activity.GetStartingIntent If in.HasExtra("Notification_Tag") Then Log(in.GetExtra("Notification_Tag")) 'Will log the tag Msgbox(in.GetExtra("Notification_Tag"),"content") End If End Sub in release mode, msgbox doesn't work but in debuge mode it works well! Is it a bug?or something I missed? thanks!
when I clicked a notify message, it runs these code: Sub Activity_Resume StartService(PushService) Dim in As Intent in = Activity.GetStartingIntent If in.HasExtra("Notification_Tag") Then Log(in.GetExtra("Notification_Tag")) 'Will log the tag Msgbox(in.GetExtra("Notification_Tag"),"content") End If End Sub in release mode, msgbox doesn't work but in debuge mode it works well! Is it a bug?or something I missed? thanks!
Erel B4X founder Staff member Licensed User Longtime User May 19, 2017 #3 Please also post the logs. Upvote 0