Add jar to b4a

Kronberger Reinhard

New Member
Licensed User
Longtime User
First sorry for my small english.
I'm looking for a solution to add a java library to B4A.The Jar file is attached.
Is it possible for someone here to generate the xml file to this library so that i
can use it in b4a IDE?
How much does ist cost?

thanks

Reinhard
 

Attachments

  • aidl_smartconnect_v1.2.11.jar
    59.2 KB · Views: 86

Johan Schoeman

Expert
Licensed User
Longtime User
You can use it via:
1. Declaring # AdditionalJar in your project and then use JavaObject and/or inline java code.
2. Write a wrapper for it and compile it to a JAR that can be used in B4A

For both options above you will still have to study the code in the JAR (or the source code if you do have it).

If doing a wrapper you can use any text editor to write the wrapper and compile it with Simple Library Compiler (available on the forum). The output will be a JAR and XML that you can then use as library in B4A
 

DonManfred

Expert
Licensed User
Longtime User
What does the jar do? Is there any Documentation about it?
 

Johan Schoeman

Expert
Licensed User
Longtime User
A good starting point is here - where I learnt from one of the masters

 

Kronberger Reinhard

New Member
Licensed User
Longtime User
What does the jar do? Is there any Documentation about it?
The jar is used to communicate between 2 Apps (GP Tom and our Ordeman like handyapp).
We send the amount to GP Tom and GP Tom is the NFC Paymentterminal.
There exists a java demo but no describtion of the jar.
 
Top