That library hasnt jar file
Should the java file be converted to jar file with wrapp?
is it possible to convert java file to jar file without wrapp?
Yes in most cases its possible to use jar file without wrapper.
1. Copy that jar and its dependencies (if applicable) to additional library folder.
2. Include those using #AdditionalJar
#AdditionalJar: yourlib.jar
3. Add #if JAVA at the bottom of the activity in which you want to use that library functions.
4. Inside that #if import relevant class from that library
5. Then write a function to use that library functions as you want.
#if JAVA
import your.library.classname;
Public void testfunction(){
YourLibClass var1 = new YourLibClass(); //just an example
}
#End if
6. Call that function from B4A code using JavaObject.
Dim jo as JavaObject=Me
jo.RunMethod("testfunction",null)