Hola: Agradeceria si alguien puede guiarme... Quiero hacer una simple libreria de prueba... que sume dos numeros.. por ejemplo: public sub (a as int, b as int) dim b as int b=a+b return b end sub Cual es el procedimiento para crear la libreria en basic4android...
The purpose of Simple Library Compiler (SLC) is to make it easier to build libraries. SLC is responsible for taking the Java source code files and generating the Jar and XML files. As I see it, it can be useful in two cases: - Creating wrappers for 3rd party SDKs. - Modifying and extending...
New video tutorial is available here: http://www.b4x.com/forum/libraries-developers-questions/12431-video-tutorial-creating-simple-library.html Basic4android has a very good support for external libraries. In fact almost all of the internal keywords are loaded from an external library (Core...
There is a new tool available for compiling libraries. It is much simpler: http://www.b4x.com/forum/showthread.php?p=173756 I've uploaded a video tutorial to YouTube which explains the steps required for building a library with Eclipse: Basic4android Tutorial - Creating a library - YouTube...
Starting from Basic4android v2.50 you can compile your project, or part of it to a regular library. Why should I compile a library? Break large projects into several smaller (more maintainable) projects. Build reusable components and use them from any number of projects. Share components with...
As B4X matures, more and more reusable components are written in B4X directly. In most cases it is simpler to implement the logic in B4X directly and the code can be cross platform. Especially with the relatively new XUI library. Standard libraries will never be cross platform as they are...