How to Import SDK in C Programming: Difference between revisions

From wizarPOS
No edit summary
Line 1: Line 1:
== SDK aar to dll ==
== Overview ==
We changed the SDK aar file to a dll, then C# program can use it. Please download demo [http://ftp.wizarpos.com/device/UseAARdemo_20231106.zip here]
We have transformed the SDK, originally an Android Archive (AAR) file, into a Dynamic Link Library (DLL) file. This allows C# programs to utilize the SDK. You can download [http://ftp.wizarpos.com/device/UseAARdemo_20231106.zip the demo] from the provided link.
 
== Key Points ==
Please note that the current demo uses a DLL that is converted from the AAR package of version 1.5.4.82. If you need to update the version during development, please contact WizarPOS support personnel.
* '''Current Demo Version:''' The demo uses a DLL converted from the AAR package of version 1.5.4.82.
 
* '''Version Updates:''' If there's a need to update to a newer version during development, please contact WizarPOS support for assistance.
== Binding an .AAR on Xamarin ==
== Additional Information ==
'''See Also'''
* '''Binding an AAR in Xamarin:''' For guidance on how to bind an .AAR file in Xamarin, refer to the Microsoft documentation available at [https://learn.microsoft.com/en-us/xamarin/android/platform/binding-java-library/binding-an-aar Binding an AAR].
 
https://learn.microsoft.com/en-us/xamarin/android/platform/binding-java-library/binding-an-aar

Revision as of 22:59, 8 January 2024

Overview

We have transformed the SDK, originally an Android Archive (AAR) file, into a Dynamic Link Library (DLL) file. This allows C# programs to utilize the SDK. You can download the demo from the provided link.

Key Points

  • Current Demo Version: The demo uses a DLL converted from the AAR package of version 1.5.4.82.
  • Version Updates: If there's a need to update to a newer version during development, please contact WizarPOS support for assistance.

Additional Information

  • Binding an AAR in Xamarin: For guidance on how to bind an .AAR file in Xamarin, refer to the Microsoft documentation available at Binding an AAR.