N nazilabdulla Member Licensed User Longtime User Mar 10, 2023 #1 How to create a our own library for B4J in eclipse, Do you have any demonstration ? Last edited: Mar 10, 2023
EnriqueGonzalez Well-Known Member Licensed User Longtime User Mar 10, 2023 #2 You have this subforum dedicated to that topic Libraries developers questions www.b4x.com I personally prefer visual studio code + simply library compiler Upvote 0
You have this subforum dedicated to that topic Libraries developers questions www.b4x.com I personally prefer visual studio code + simply library compiler
Erel B4X founder Staff member Licensed User Longtime User Mar 12, 2023 #3 SLC: https://www.b4x.com/android/forum/t...uild-libraries-without-eclipse.29918/#content It doesn't matter how you write the Java code. Use SLC to compile it and create the XML file. In most cases I prefer not to write a Java library at all. Instead create a B4X class that accesses the underlying SDK using JavaObject / inline Java. It is then very simple to create a b4xlib out of this class. Upvote 0
SLC: https://www.b4x.com/android/forum/t...uild-libraries-without-eclipse.29918/#content It doesn't matter how you write the Java code. Use SLC to compile it and create the XML file. In most cases I prefer not to write a Java library at all. Instead create a B4X class that accesses the underlying SDK using JavaObject / inline Java. It is then very simple to create a b4xlib out of this class.
tchart Well-Known Member Licensed User Longtime User Mar 12, 2023 #4 +1 for SLC Ever since Erel released that tool there is no need for Eclipse. Use the IDE you prefer (VS Code, Notepad++) and compile with SLC. Upvote 0
+1 for SLC Ever since Erel released that tool there is no need for Eclipse. Use the IDE you prefer (VS Code, Notepad++) and compile with SLC.