Android Question Using library .jar B4A

rscheel

Well-Known Member
Licensed User
Longtime User
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 .

He left the library attached.

Thank you for your help.
 

Attachments

  • fgtitdevice.jar
    15.8 KB · Views: 156

rscheel

Well-Known Member
Licensed User
Longtime User
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
 
Upvote 0

somed3v3loper

Well-Known Member
Licensed User
Longtime User
I am sorry I do not have a device with fingerprint sensor .
Maybe someone with such a device can help you .
 
Upvote 0
Top