Hi,
SLC is a great tool to compile Java classes but what if we can directly add the Java class to the project to be able to edit it without having to recompile the library again every time
i think in this case we can import the original libraries Jar and ".so" files directly without wrapping
The #AdditionalJar module attribute (introduced in B4A v3.80) allows us to reference external jars. With the help of JavaObject it is now possible to integrate third party jars without a wrapper. This solution is good for "simple" libraries. If the API is complicated with many interfaces then...