CloudPOS SDK: Difference between revisions
Line 19: | Line 19: | ||
=== Java API === | === Java API === | ||
Java API is packaged as an aar library file, it can be used by Android developer easily. You can download the latest aar library file from below link. | |||
*[http://{{SERVERNAME}}/wizarposapi/ API Spec] | *[http://{{SERVERNAME}}/wizarposapi/ API Spec] | ||
*[[Java Samples|Samples]] | *[[Java Samples|Samples]] |
Revision as of 09:28, 22 November 2018
Device API
There are three layers of device API, the lower layer is C, the device provides C interface, and the third-party app writes their own JNI source by calling the C interface. The middle layer is JNI interface, wizarPOS writes JNI source and generates the device so files, so the third-party app just uses the JNIInterface to finish the calling. The upper layer is Java interface, wizarPOS provides Java interface for the third-party app, the third-party app only needs to import the .aar pakcage to their libs. The app should request permissions in manifest file.
- Permissions defination
- WizarPOS printer ESC commands
C API
The C API offers header files definition and the relevant so library is already included in the system. The application developers can create the native so library by the C API to implement their business logic. So the implementation will be more secure than Java implementation.
JNI API
we offer JNI interface to wrapper the C API to help the developer to use C API. Now we recommended you to use Java API instead of JNI API.
Java API
Java API is packaged as an aar library file, it can be used by Android developer easily. You can download the latest aar library file from below link.