Found the activity
Hi,
I found a way to list all activities and it is called WriterActivity.
When listing the acitivities it gives me :
com.nxp.nfc.tagwriter.activities.WriterActivity
However when I run this with below code it gives me an AcvitityNotFoundException while the same piece of code works with YouTube videos (of course with another activity name). I also tried tagwriter.activities/.WriterActivity but no luck.
Is below call correct parameter wise?
Sub writeTag (URL As String)
Dim i As Intent
i.Initialize(i.ACTION_VIEW,URL)
i.SetComponent ("com.nxp.nfc.tagwriter/.WriterActivity")
i.PutExtra ("",URL)
StartActivity(i)
End Sub