We hope you caught yesterday's first coding session with our Developer Support Agent Matt. Here is the second part of his three part mini-series about the LEADTOOLS Xamarin Camera control and the Barcode SDK. At the end of this series, you will have developed a live capture barcode recognition application.
For this video, Matt will show you how to set your LEADTOOLS license using just a couple lines of code. In the final video, he will show you how to add the barcode functionality, so stay tuned.
https://youtu.be/AQMYC1beHCU
For convenience, the code below is from the video, allowing you to copy and paste it to your IDE as you follow.
RasterSupport.Initialize(this);
string licString = [License]∖n + License = <doc><ver>2.0</ver><code>PASTE YOUR LICENSE CONTENTS HERE</code></doc>;
string developerKey = "PASTE YOUR DEVELOPER KEY HERE";
byte[] licBytes = System.Text.Encoding.UTF8.GetBytes(licString);
RasterSupport.SetLicense(licBytes, developerKey);