How to write the class library files used by b4a, and what writing tools, software or development platform need to be used. In addition, is there any relevant information you can download? Where can I download it? thank everybody.
Is it? Is it redevelopment in b4a language? In our community, we often see new release packages (jar and XML). Is this also developed using b4a?such as View attachment 125240
They can be, B4X IDE has a Project -> Compile to library option which produces a jar and xml for a B4A class. Also you can write a library in Java and compile it with Android Studio, Eclipse or Simple Library Compiler (SLC) to create the jar and and use the B4Doclet class to create the xml.
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...