Hi,
I have created a java jar earlier (Which work fined) and include in my b4a project.
I added a new class into the jar and trying to call it using below code.
But hit into error on "Cannot get methods of class: myProj.myUtils, disabling cache.".
There are 2 classes in the jar file. The problem is to call the new class but no problem on earlier one.
Any advice on this?
I have created a java jar earlier (Which work fined) and include in my b4a project.
I added a new class into the jar and trying to call it using below code.
But hit into error on "Cannot get methods of class: myProj.myUtils, disabling cache.".
There are 2 classes in the jar file. The problem is to call the new class but no problem on earlier one.
Any advice on this?
B4X:
Dim jo As JavaObject
jo = jo.InitializeStatic("myProj.myUtils").RunMethod("getInstance", Null)