joaquinortiz Active Member Licensed User Longtime User Jun 19, 2020 #1 Hello fellows!! In this link ( Binding a Java Library into Xamarin.Android ), it explains how to bind a Java Library into Xamarin.Android. Is there a way to do the same in B4A? Thanks in advance!
Hello fellows!! In this link ( Binding a Java Library into Xamarin.Android ), it explains how to bind a Java Library into Xamarin.Android. Is there a way to do the same in B4A? Thanks in advance!
EnriqueGonzalez Expert Licensed User Longtime User Jun 19, 2020 #2 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
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.