I've a Jar file called IvrJackU1.jar with some methods
I attach the documentation.
I also have a demo for android and the part of the code that call the method open
reader = new IvrJackService();
// reader = new IvrJackService();
reader.open(this, this);
I can call the method close with no error but i cant call the method open because uses 2 arguments and i dont know how to send in V4A
my code
#AdditionalJar: IvrJackU1
Sub Activity_Create(FirstTime As Boolean)
Dim b As Boolean
Dim aa As Int
b=True
Dim wdj As JavaObject
Dim adp As JavaObject
wdj.InitializeNewInstance("rfid.ivrjacku1.IvrJackService",Null)
adp.InitializeStatic("rfid.ivrjacku1.IvrJackAdapter")
wdj.RunMethod("rfid.ivrjacku1.IvrJackAdapter",Array(GetContext,adp))
aa=wdj.RunMethod ("readEPC",Array(b))
Log(aa)
End Sub
I attach the documentation.
I also have a demo for android and the part of the code that call the method open
reader = new IvrJackService();
// reader = new IvrJackService();
reader.open(this, this);
I can call the method close with no error but i cant call the method open because uses 2 arguments and i dont know how to send in V4A
my code
#AdditionalJar: IvrJackU1
Sub Activity_Create(FirstTime As Boolean)
Dim b As Boolean
Dim aa As Int
b=True
Dim wdj As JavaObject
Dim adp As JavaObject
wdj.InitializeNewInstance("rfid.ivrjacku1.IvrJackService",Null)
adp.InitializeStatic("rfid.ivrjacku1.IvrJackAdapter")
wdj.RunMethod("rfid.ivrjacku1.IvrJackAdapter",Array(GetContext,adp))
aa=wdj.RunMethod ("readEPC",Array(b))
Log(aa)
End Sub