Hi, I have a fgtitdevice.jar library that is a fingerprint reader usb this library is a project done in eclipce, the query is this library .jar as I use in B4A, you can generate the xml, to use .
To read the fingerprint reader, I make the following, but just send me message Divice Open Fail, if I'm not doing the right thing.
B4X:
Sub Process_Globals
Private USBD As SMMFingerPrint
End Sub
Sub Globals
End Sub
Sub Activity_Create(FirstTime As Boolean)
Dim btnConnect As Button
btnConnect.Initialize("btnConnect")
btnConnect.Text = "Connect"
Activity.AddView(btnConnect, 10dip, 10dip, 100dip, 100dip)
USBD.Initialize("USBD")
End Sub
Sub btnConnect_Click
ToastMessageShow(USBD.OpenDevice, True)
'USBD.OpenDevice
End Sub