Android Question How to binding a Java Library into B4A

EnriqueGonzalez

Expert
Licensed User
Longtime User
not with the same level of "sophistication and complexity" but you can bind any java library by simply doing

B4X:
#additionalJar: yourLibrary.jar

this will give you access to the library with JavaObject, Reflection and Inline Java.

if you want to seemlesly use it with B4x you need to know Java and make a wrapper for it.
 
Upvote 0
Top