Basic Xamarin Print Example

Anonymous (not verified) -
3 MIN READ

Hi Everyone,

We've gotten several requests for some basic sample code for the Link-OS Multiplatform SDK showing it's use with Xamarin.

First, you need to install the SDK, either by downloading it from Zebra.com and following the install instructions, or getting it directly from Nuget. Full API documentation is on Link-OS SDK - Zebra Technologies Techdocs .

The sample code creates an app with a text box for entering a printer address and a print button.  When you press the print button, the words "Hello World" print on your Zebra Printer. The address can be an IP address or a Bluetooth MAC address for your printer.

This sample code is for Android, but you can copy the printing portions into an iOS or Forms app without changes.  I gave permissions for BLUETOOTH and BLUETOOTH_ADMIN in the manifest.  As a note, this code will set your printer to ZPL mode, so if you want to your app to print in line mode, you will need to change it back or modify the code.   If you just want to test this code over Bluetooth, you can speed up time to print by changing the connection builder string to

connection = ConnectionBuilder.Current.Build("BT:" + address);

Happy Coding!

MainActivity.cs

/***********************************************

CONFIDENTIAL AND PROPRIETARY

The source code and other information contained herein is the confidential and the exclusive property of

ZIH Corp. and is subject to the terms and conditions in your end user license agreement.

Copyright ZIH Corp. 2016

ALL RIGHTS RESERVED

***********************************************/

using System;

using Android.App;

using Android.Widget;

using Android.OS;

using System.Threading.Tasks;

using LinkOS.Plugin.Abstractions;

using LinkOS.Plugin;

using Android.Util;

using System.Text;

namespace BasicPrint

{

    [Activity(Label = "BasicPrint", MainLauncher = true, Icon = "@drawable/icon")]

    public class MainActivity : Activity

    {

        Button button;

        EditText addressTxt;

        const string tag = "BasicPrintApp";

        IConnection connection;

        protected override void OnCreate(Bundle bundle)

        {

            base.OnCreate(bundle);

            // Set our view from the "main" layout resource

            SetContentView(Resource.Layout.Main);

            // Get our button from the layout resource,

            // and attach an event to it

            button = FindViewById

            addressTxt = FindViewById(Resource.Id.address);

            connection = null;

            button.Click += delegate {

                Start_Print();

            };

        }

        private void Start_Print()

        {

            button.Enabled = false;

            string address = addressTxt.Text;

            // Bluetooth communications must be handled on a separate thread and it's

            //    best practice to handle network coms on it as well

            new Task(() =>

            {

                Print(address);

            }).Start();

        }

        private void Print(string address)

        {

            string zpl = "^XA^LL200^FO30,20^A0N,30,30^FDHello World^FS^XZ";

            try

            {

                if ((connection == null) || (!connection.IsConnected))

                {

                    connection = ConnectionBuilder.Current.Build(address);

                    connection.Open();

                }

                if ((SetPrintLanguage(connection)) && (CheckPrinterStatus(connection)))

                {

                    connection.Write(Encoding.ASCII.GetBytes(zpl));

                }

            }

            catch (Exception e)

            {

                //if the device is unable to connect, an exception is thrown

                Log.Debug(tag, e.ToString());

            }

            finally

            {

                this.RunOnUiThread(() =>

                {

                    button.Enabled = true;

                });

            }

        }

        private bool SetPrintLanguage(IConnection connection)

        {

            string setLanguage = "! U1 setvar \"device.languages\" \"zpl\"\r\n\r\n! U1 getvar \"device.languages\"\r\n\r\n";

            byte[] response = connection.SendAndWaitForResponse(Encoding.ASCII.GetBytes(setLanguage), 500, 500);

            string s = Encoding.ASCII.GetString(response);

            if (!s.Contains("zpl"))

            {

                Log.Debug(tag, "Not a ZPL printer.");

                return false;

            }

            return true;

        }

        private bool CheckPrinterStatus(IConnection connection)

        {

            IZebraPrinter printer = ZebraPrinterFactory.Current.GetInstance(PrinterLanguage.ZPL, connection);

            IPrinterStatus status = printer.CurrentStatus;

            if (! status.IsReadyToPrint)

            {

                Log.Debug(tag, "Printer in Error: " + status.ToString());

            }

            return true;

        }

        protected override void OnPause()

        {

            base.OnPause();

            Log.Debug(tag, "Closing connection on inactive app");

            if ((connection != null) && (connection.IsConnected))

            {

                connection.Close();

            }

        }

    }

}

Main.axml

http://schemas.android.com/apk/res/android"

    android:orientation="vertical"

    android:layout_width="match_parent"

    android:layout_height="match_parent">

   

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:id="@+id/address"

        android:hint="@string/Address" />

   

        android:id="@+id/MyButton"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:text="@string/Hello" />

Robin West

Solution Architect

Zebra Technologies

profile

Anonymous (not verified)

Dfghjkjjn

Please register or login to post a reply

61 Replies

V Vedsatx Saddvv

Thank you, Robin! A timely add to LaunchPad as I was just starting with Bluetooth printing to QLn320 using Xamarin.Android!

A Amine Cherifi

Hi Robin,
Thank you for your reply but I finally account not used your pluging. And I can print its no plubléme. but I have a problem with the ZPL code on a chain of caractaire when I made a space. you can see in the pictures. And when I have more space the printer does not respond.
Thank you again for your help

c christophe bernard

Hello robin west ,
i'm a beginner with mobile dev and xamarin i've installed visual studio 2015 professionnel.
vs 2015 included xamarin => i can created project compile and deploy and a device => all works.

I work the a big society and i need to print on a zebra MZ 220.

I've follow your insturction :
- create new blank project android with vs 2015
- add nuget package LinkOS_Xamarin_SDK
- copy paste the code
- build solution

when i type the address mac or the name of the printer in the method Print as this
private void Print(string address)
        {
            //
            if (String.IsNullOrEmpty(address))
                address = "LUXXH134893625"; // "AC3FA413BCBD"; //
                .....

I have this error :

Zebra.Sdk.Comm.ConnectionException: Could not open connection string "LUXXH134893625"
  at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in /Users/builder/data/lanes/3415/7db2aac3/source/mono/external/referencesource/mscorlib/system/runtime/exceptionservices/exceptionservicescommon.cs:143
  at Java.Interop.JniEnvironment+StaticMethods.CallStaticObjectMethod (JniObjectReference type, Java.Interop.JniMethodInfo method, Java.Interop.JniArgumentValue* args) [0x00082] in /Users/builder/data/lanes/3415/7db2aac3/source/Java.Interop/src/Java.Interop/Java.Interop/JniEnvironment.g.cs:12649
  at Android.Runtime.JNIEnv.CallStaticObjectMethod (IntPtr jclass, IntPtr jmethod, Android.Runtime.JValue* parms) [0x00000] in /Users/builder/data/lanes/3415/7db2aac3/source/monodroid/src/Mono.Android/src/Runtime/JNIEnv.g.cs:562
  at Zebra.Sdk.Comm.ConnectionBuilder.Build (System.String p0) [0x00049] in C:\repos\xamarin-sdk\Binding Libraries\ZSDK_ANDROIDX\ZSDK_ANDROIDX\obj\Release\generated\src\Zebra.Sdk.Comm.ConnectionBuilder.cs:54
  at LinkOS.Plugin.ConnectionBuilderImplementation.Build (System.String connectionString) [0x00000] in C:\repos\xamarin-sdk\Link_OS_SDK_for_Xamarin_Portable\LinkOS\LinkOS.Plugin.Android\ConnectionBuilderImplementation.cs:19
  at FirstPrint.MainActivity.Print (System.String address) [0x00037] in C:\CHB_DEV\ANDROID XAMARIN\MY_PROJECT\DIVERS TUTO\ZEBRA_PRINT\FirstPrint\FirstPrint\MainActivity.cs:86
  --- End of managed exception stack trace ---
com.zebra.sdk.comm.ConnectionException: Could not open connection string "LUXXH134893625"
  at com.zebra.sdk.comm.internal.ConnectionBuilderInternal.build(Unknown Source)
  at com.zebra.sdk.comm.ConnectionBuilder.build(Unknown Source)
  at dalvik.system.NativeStart.run(Native Method)
}

Any idea ?

I've realize also a second project with this code (button click) and i can send some command to print and it's workkkkk fine here is it the code
With this sample i can see that my printer WORK fine ...i don't know what's happens with my first sample ...

if you can help me, it would be appreciate ..

private void Button_Click(object sender, EventArgs e)
        {
            //
            new System.Threading.Tasks.Task(() =>
            {
                try
                {
                    //mac address printer zebra
                    string address = "AC3FA413BCBD";

                    //start
                    Zebra.Sdk.Comm.BluetoothConnectionInsecure thePrinterConn = new Zebra.Sdk.Comm.BluetoothConnectionInsecure(address);

                    //open connection
                    thePrinterConn.Open();

                    //This example prints "This is a CPCL test." near the top of the label.
                    String cpclData = "! 0 200 200 210 1\r\n"
                            + "TEXT 4 0 30 10 This is a CPCL test.\r\n"
                            + "FORM\r\n"
                            + "PRINT\r\n";

                    // Send the data to printer as a byte array.
                    thePrinterConn.Write(System.Text.Encoding.ASCII.GetBytes(cpclData));

                    // Close the insecure connection to release resources.
                    thePrinterConn.Close();
                }
                catch (Exception exception)
                {
                    Android.Util.Log.Debug("printZebraSample", exception.ToString());
                }

            }).Start();

thanks for your time

A Amine Cherifi

Hello, I have a zebra P4T.m. and I tried your code but I get errors. Thank you in advance for your help (I apologize for my english)
**********************************************************************************************************************************

Erreur

java.lang.OutOfMemoryError. Consider increasing the value of $(JavaMaximumHeapSize). Java ran out of memory while executing 'java.exe -jar "C:\Program Files (x86)\Android\android-sdk\build-tools\24.0.2\\lib\dx.jar" --no-strict --dex --output=obj\Debug\android\bin obj\Debug\android\bin\classes "C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\MonoAndroid\v7.0\mono.android.jar" obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\ZSDK_ANDROID_API.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__commons-io-2.2.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__commons-lang3-3.4.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__commons-net-3.1.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__commons-validator-1.4.0.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__core-1.53.0.0.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__httpcore-4.3.1.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__httpmime-4.3.2.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__jackson-annotations-2.2.3.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__jackson-core-2.2.3.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__jackson-databind-2.2.3.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__opencsv-2.2.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__pkix-1.53.0.0.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__prov-1.53.0.0.jar obj\Debug\__library_projects__\ZSDK_ANDROIDX\library_project_imports\__reference__snmp6_1.jar'
AppTestBluetooth5

V Vedsatx Saddvv

Hi Amine,
Can grab a little more of the log?  It' looks like you are missing some of the exception stacktrace.  I can't see what is wrong.

V Vedsatx Saddvv

Hi Amine,
I hate to ask the basic questions, but have you made sure Bluetooth is turned on on the Android device as well as the printer?  Are you sure the printer you have does have Bluetooth? Not all do.  Also verify the MAC address is for Bluetooth and not Wi-Fi. 
Robin

P Pat Jefferies

Hi Robin,

Great news about the Xamarin component. Unfortunately I'm not able to get your example to work. I can establish a Bluetooth connection to my QLn420, and the call to SetPrintLanguage confirms it is a ZPL printer, but the call to CheckPrinterStatus throws an exception on the line:

IPrinterStatus status = printer.CurrentStatus;

I get the following exception:

Malformed status response - unable to determine printer status

The documentation for the CurrentStatus property is a little confusing too:

///
/// Get a new instance of PrinterStatus that can be used to determine the status of a printer.
/// On Zebralink Mobile Printers, this function only works if the printer is not currently printing or processing other data, otherwise returns a MalformedStatusResponse exception.
/// Link-OS and non-Mobile printers can be checked for status while prinintg.
///
IPrinterStatus CurrentStatus { get; }

I don't really know the difference between a Zebralink Mobile Printer, a Link-OS printer and a non-Mobile printer... As far as I am aware the QLn420 is a Link-OS printer, correct? So this method should work??

V Vedsatx Saddvv

Hi Christophe,
It looks like it can't find a printer at that MAC address.  Have you verified the Bluetooth MAC address of the printer?  In your first example you have one address and second example have another address.  I'm assuming you tried the first example with the same address/printer as your second sample.  Did you get the same exception?

c christophe bernard

Hello Robin,

great to have a reply so fast

yes in the first example it's was a mistake because this name LUXXH134893625 is the name of the printer found when i activitate the bluethbooth..
The mac address is AC3FA413BCBD => i've try also with AC:3F:A4:13:BC:BD but nothing work with this method ConnectionBuilder.Current.Build(address);
Same thing when i use ConnectionBuilder.Current.Build("BT:" + address);

Now, on the same printer same mac address of course if i use BluetoothConnectionInsecure(address)
that's works ...

Ok i think we use BluetoothConnectionInsecure for our dev ...
but if you have another idea or something i must to check ...
i use :
- vs 2015 professionnal
- nuguet package installed LinkOS_Xamarin_SDK
- sdk zebra installed

Just last question, is it better to use cpcl or zpl command ?
I repeat sorry i'm a beginner and my poor english can't help me, but i've notice i've send zpl i obtain some strange print ...
but if i send some cpcl all works ...

Thanks and have an happy coding day without problem

V Vedsatx Saddvv

Hi Pat,
The QLn420 is a Link-OS printer, so I'm not sure why this would be happening.  The only thing I can think of right now is to try modifying the timeouts.  It may not be getting the full status due to slow Bluetooth communication, so it's saying the status is malformed.  The timeouts to adjust are the MaxTimeoutForRead and TimeToWaitForMoreData. What device are you using for your app? 

S Sandeep rathod

Hi,
I'm getting the following error

and

Thanks

S Sandeep rathod

Hi Robin,
Code is working now but it takes about 5 mins to come out of this method and print

connection = ConnectionBuilder.Current.Build("XXQLJ144902320");
5mins for the above above line.

connection.Open();

Above code is inside a function and called as

new Task(() =>             {                 Print();     }).Start();

Thanks

S Sandeep rathod

Hi Robin,
The following code is taking 5 mins to execute

connection =ConnectionBuilder.Current.Build("XXQLJ144902320");
5mins for the above above line.

connection.Open();

Above code is inside a function and called as

new Task(() =>            {                Print();    }).Start();

Thanks

V Vedsatx Saddvv

Hi Sandeep,
You have to make sure to import the nuget package on the top 'Solution' as opposed to the projects. 

Once this is open and you have the SDK selected, make sure all the projects are selected and installed on.

J Jun Park

Hi Robin

I am new to Zebra printer control.

My final goal is encoding RFID tag via Zebra printer using android phone.
It would be nice to use Xamarin since other features of this existing app is already in Xamarin.  ( I believe ZPL already support RFID encoding via android phone.. please correct me if I am wrong.)

And I believe communicating via Bluetooth is already supported in Xamarin at this point, please correct me if I am wrong.

Thanks!

V Vedsatx Saddvv

Hi Jun, You can encode RFID with Xamarin and/or Android.  Just add your tag encoding commands to the ZPL being sent.  Bluetooth communication is also supported.

D Darryn Campbell

Hi Peter, I haven't seen this past updating the Java maximum heap size to 1G.&nbsp; It's really low by default.&nbsp; It is an Android issue, so shouldn't matter if you are using Forms or not.&nbsp; Doing a quick search, it looks like you can also edit the manifest: android:largeHeap="true"&nbsp; <a href="http://stackoverflow.com/questions/36835790/getting-outofmemoryexceptio… - Getting OutOfMemoryException in Xamarin - Stack Overflow</a>

D Darryn Campbell

Thanks Peter &amp; Robin,
I think android:largeHeap="true" only has an effect when running the application, not on the build. However, I have already tried adding it to the manifest, which made no difference.

Any other suggestions greatly appreciated.

Thanks,
Pete

P Pete Thomson

Hi Robin,
I have a problem with LinkOS V1.1.75.

I am creating a Xamarin forms (v2.3.3.180) app for a TC51 using VS2015. I am using a network conected ZD420.

I have added the LinkOS SDK to both my portable and droid projects (that is currently all the projects in this solution).
When I try to build the droid project, I get the following error:
Error&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; java.lang.OutOfMemoryError. Consider increasing the value of $(JavaMaximumHeapSize). Java ran out of memory while executing 'java.exe -Xmx1G -jar "C:\Users\Pete%20Thomson\AppData\Local\Xamarin\MonoForAndroid\AndroidSDK\build-tools\23.0.2\\lib\dx.jar" --no-strict --dex --multi-dex --main-dex-list=obj\Debug\multidex.keep --output=obj\Debug\android\bin obj\Debug\android\bin\classes "C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\MonoAndroid\v7.0\mono.android.jar" "C:\Program Files (x86)\MSBuild\Xamarin\Android\android-support-multidex.jar"

I have enabled Multi-dex and the Java maximum heap size is 1G.

This project compiles and runs fine with LinkOS version 1.0.59.

Can you give me any suggestions how to deal with this? If you need the full debug output, can I e-mail it to you as it's quite big to post here?

Thanks,
Pete

A Angelo Bombardieri

Hi Robin

&nbsp;&nbsp;&nbsp; We have problems with release compilation of Xamarin_LinkOS_Developer_Demo:

2&gt;C:\Program Files (x86)\MSBuild\Xamarin\Android\Xamarin.Android.Common.targets(1473,5): error MSB4018: The "LinkAssemblies" task failed unexpectedly.

2&gt;C:\Program Files (x86)\MSBuild\Xamarin\Android\Xamarin.Android.Common.targets(1473,5): error MSB4018: Xamarin.Android.XamarinAndroidException: error XA2006: Reference to metadata item '!!0[] System.Array::Empty()' (defined in 'ZSDK_ANDROIDX, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null') from 'ZSDK_ANDROIDX, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' could not be resolved. ---&gt; Mono.Cecil.ResolutionException: Failed to resolve !!0[] System.Array::Empty()

2&gt;C:\Program Files (x86)\MSBuild\Xamarin\Android\Xamarin.Android.Common.targets(1473,5): error MSB4018:&nbsp;&nbsp;&nbsp; at Mono.Linker.Steps.MarkStep.MarkMethod(MethodReference reference)
.....

&nbsp;&nbsp;&nbsp; We use VS.NET 2015 Prof.

Can you help us please ?
Angelo Bombardieri

A Angelo Bombardieri

Hi Pete

&nbsp;&nbsp;&nbsp; Use Java maximum heap size to 2G with android:largeHeap="true".

Angelo Bombardieri

V Vedsatx Saddvv

I also found this error in the Xamarin demo solution. I copied the implementation to my project and it worked - unfortunately not using Xamarin.Forms if that helps narrow things down.

Peter Douglas

D Darryn Campbell

Hi Robin!
I am replicating this code in Xamarin with VS 2015 .... create a portable project of shared code (PCL) ... and when starting my project this throws me the following error:Error Invalid resource directory name: "res main.xml". Print.Android C: \ Users \ crisa \ Desktop \ Omni \ AHSE Systems \ Xamarin Programming \ Print \ Print \ Print.Android \ aapt.exeCan you help me with this error?

C Colm Reilly

Hi,
I am getting the following errors when I try to use this code.
<a href="http://i.imgur.com/5vBboWC.png">http://i.imgur.com/5vBboWC.png</a&gt; (Link is to the screenshot, I cannot seem to add images to this post?)

I have added the code to the PCL of a new Xamarin project.

Also, when it tries to get the connection with the serial number I get this error. Bluetooth is enabled in the manifest and the printer is paired with the phone. - <a href="http://i.imgur.com/Z2gIkdq.png">http://i.imgur.com/Z2gIkdq.png</a&gt;

V Vedsatx Saddvv

Robin,

I am a Zebra SE trying to make a simple printing sample in Xamarin for Android only, TC51.&nbsp; Assuming this sample works on a Xamarin.android project as well, how do I get the bluetooth MAC address of the terminal in code.&nbsp; I will be connecting the printer via the android bluetooth manager outside the application.

V Vedsatx Saddvv

Hi Kevin, I'm afraid not.&nbsp; If you are doing discovery, you can check the mac address with the method IDiscoveredPrinter.Address, then get the connection with IDiscoveredPrinter.Connection

D Darryn Campbell

is there a myBTconnection.getconnectedMAC&nbsp; or some other command,&nbsp; Although they will primarily be using TC51, this needs to work on some non-zebra terminals also so was hoping some call existed to retrieve the MAC that did not involve scanning or NFC

Thanks for the really fast response

N Nicola Lazzara

Hi Robin, with mobile zebra printer and Zebra API i can manage printing in Xamarin.Forms PCL project (on visual studio 2017)? My device for my app is an Ipad, but the technology chosen was xamarin.forms to be able to manage non-IOS devices in the future.

V Vedsatx Saddvv

We need to add the following to the Info.plist for iOS in Xamarin

UIBackgroundModes

&nbsp;&nbsp;&nbsp; external-accessory

UISupportedExternalAccessoryProtocols

&nbsp;&nbsp;&nbsp; com.zebra.rawport

V Vedsatx Saddvv

Not sure if you have already paired the Bluetooth between your phone with the printer. We need to manually pair them through the phone's settings for iPhone.

A Allen Lukowitz

Thank you for your quick response, I did see that online as a possible solution but then I got this error:

1&gt;CREATEMULTIDEXMAINDEXCLASSLIST : error : Can't read (Can't process class (Unsupported class version number (maximum 51.0, Java 1.7)))

al

A Alexandre Coupal

Hi Robin,
I was able to run your sample for Xamarin forms but only for Android. When I'm using that same code in iOS, I get an error saying :"Counld not connect to device on address AC:3F:A4:CC:62:87 ... at LinkOS.Plugin.ConnectionImplementation.Open() .."
Does iOS need something special in the plist or in the developer account ... ? Any suggestions ?

Yes, I paired the device before and the connection is well established. I also used the Zebra Utility app for iOS and it prints.
Thank you in advance for your help.

A Alexandre Coupal

Hi Steven, thanks for the quick reply. So I added :
UIBackgroundModes

external-accessory

UISupportedExternalAccessoryProtocols

com.zebra.rawport

But I still can't connect. Am I missing something else ? The zebra documentation is saying :
<ul>
<li>Link your project to the <strong>ExternalAccessory</strong> framework</li>
</ul>
Is that something Im suppose to do ? My project builds fine, I don't see why I would need that framework.

V Vedsatx Saddvv

Hi Allen, I'm not sure on that one, I was also going to suggest Multidex as well as that fixed the "code 2" issue when I've run into it. Looks like this second error might have something to do with your JDK version.&nbsp; Some of the other notes seemed to indicate you can fix it by updating Proguard.
<a href="https://bugzilla.xamarin.com/show_bug.cgi?id=44187">44187 – Build error when Proguard or MultiDex options are enabled</a>
<a href="https://forums.xamarin.com/discussion/84795/unsupported-class-version-n… class version number [52.0]" build error — Xamarin Forums</a>

A Allen Lukowitz

Thanks Robin,

I was looking for this example you posted

<a href="https://developer.zebra.com/community/technologies/printers/label-print…;

I was also looking for the instruction on how to add the Link OS to a Visual Studio C# project. I have already downloaded it to my PC

Thanks again

al

Allen G. Lukowitz
Director of Technical Services
CaraFlow LLC
414-906-9170
<a href="mailto:alukowitz@caraflow.com">alukowitz@caraflow.com</a>&lt;<a>"&gt;ma…;

&lt;<a>"&gt;http://www.caraflow.com/&gt;</a&gt;

A Alexandre Coupal

We have some progress!! It now connects, but I have an exception when trying to SetPrintLanguage. The exception is "ConnectionException : Error writing to the connection".
My method SetPrintLanguage() is the same as suggested in this page. Thanks again for replying so quick.

A Alexandre Coupal

Got it, I need BT: in front of the serial number. Its working fine now. Thanks a lot Steven. Hopefully this will helps others, since there is not a lot of info for iOS on the web.

V Vedsatx Saddvv

Hi Allen, Over the weekend we "streamlined" the site and moved a lot of the content around.&nbsp; If you are looking for something please use search, or reply with your original link and I'll find and post the new one.

P Petre Dita

hello
i need to write on a ZQ110 thermal printer
i am trying the simple version of this sample
connection = LinkOS.Plugin.ConnectionBuilder.Current.Build(address); //&lt;&lt;&lt; ISSUE HERE
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; connection.Open();
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; connection.Write(Encoding.ASCII.GetBytes("^XA^PW800^LL200^FO30,30^A0N,30,30^FDHello World!!!^FS^XZ"));

the result is that it prints exactly this string: "^XA^PW800^LL200^FO30,30"
on the second try it prints the rest: "^A0N,30,30^FDHello World!!!^FS^XZ"

SetPrintLanguage returns ""

CheckPrinterStatus returns error "malformed unknown printer"

any help would be apreciated

V Vedsatx Saddvv

Hi Petre, The ZQ110 is one of the few Zebra printers that will not work with the Link-OS SDKs in any way.&nbsp; Please see the ZQ110 specific SDK's on the support page: <a href="https://www.zebra.com/us/en/support-downloads/printers/mobile/zq110.htm… Mobile Printer Support &amp; Downloads | Zebra</a> <a href="https://www.zebra.com/us/en/support-downloads/printers/mobile/zq110.htm…;

R Rachel Susairaj

Hi,

connection = ConnectionBuilder.Current.Build(addr);&nbsp;&nbsp;

We are using&nbsp; Zebra QLn220 printer.&nbsp;
In the sample code, the above line takes about 6 seconds to execute. Hence the printing time is approx 6 seconds due to the above line. Is there any way, we can improve the speed here ?

Thanks,

V Vedsatx Saddvv

Hi Colm, I realize you might have figured this out already, but the RunOnUIThread is an API off of the Android.App library.&nbsp; The if the Encoding.ASCII is not available, and I've run into some versions and runtimes of Xamarin where it wasn't, use UTF8 as the encoding instead.&nbsp;
It's hard to know what the issue is with the Bluetooth connection without knowing more about the situation.&nbsp; It could be something as small as the printer being off or out of range, to any number of different issues.
Also, You should be able to use this library on the PCL level rather than just the Android and iOS levels if you wanted to save yourself the coding in both areas.

A Alexandre Coupal

Hi, Try adding Multidex

A Amine Cherifi

Hi Robin, Thank you very much for help and your quick answer, but I can not to connect to my printer P4T.tm and print. When I get to line 59 picture1. he jumps direct (catch (Exception e)). picture2.
Thank you again for your help

10-07 14:15:39.031 D/BasicPrintApp( 7184):
at android.bluetooth.BluetoothAdapter.cancelDiscovery(BluetoothAdapter.java:705)

10-07 14:15:39.031 D/BasicPrintApp( 7184):
at com.zebra.sdk.comm.BluetoothConnection.cancelBluetoothDiscovery(Unknown Source)

10-07 14:15:39.031 D/BasicPrintApp( 7184):
at com.zebra.sdk.comm.BluetoothConnection.open(Unknown Source)

10-07 14:15:39.031 D/BasicPrintApp( 7184):
at com.zebra.sdk.comm.MultichannelConnection.openPrintingChannel(Unknown Source)

10-07 14:15:39.031 D/BasicPrintApp( 7184):
at com.zebra.sdk.comm.MultichannelBluetoothConnection.open(Unknown Source)

10-07 14:15:39.031 D/BasicPrintApp( 7184):
at com.zebra.sdk.comm.internal.ConnectionBuilderInternal.determineConnectionToTry(Unknown Source)

10-07 14:15:39.031 D/BasicPrintApp( 7184):
at com.zebra.sdk.comm.internal.ConnectionBuilderInternal.build(Unknown Source)

10-07 14:15:39.031 D/BasicPrintApp( 7184):
at com.zebra.sdk.comm.ConnectionBuilder.build(Unknown Source)

10-07 14:15:39.031 D/BasicPrintApp( 7184):
at dalvik.system.NativeStart.run(Native Method)

10-07 14:15:39.132 D/dalvikvm( 7184): GC_CONCURRENT freed 237K, 4% free 9292K/9607K, paused 5ms+5ms
Thread finished: #5
10-07 14:15:50.726 D/Mono&nbsp;&nbsp;&nbsp; ( 7184): [0x98f830] worker finishing
Le thread 'Unknown' (0x5) s'est arrêté avec le code 0 (0x0).
Thread finished: #3
Le thread 'Unknown' (0x3) s'est arrêté avec le code 0 (0x0).

Y Yi Yang Ang

Hi Robin, thanks for guide.
However, I encounter an issue when with Bluetooth connection. Even though I had called the IConnection.close() method, the device is still connected, and other phone cannot connect to the printer unless I manually turn off bluetooth connection on the phone.
This happens to both Android and iOS.

How should I close the connection properly?

V Vedsatx Saddvv

Hi Amine, Nearly any time you are creating a new Android app on Xamarin, one quirk is you have to set the Heap size.&nbsp; Do this by going into the Android Project Properties.&nbsp; In the Android Options tab, go to the Advanced tab.&nbsp; Enter 1G in the "Java Max Heap Size:"

A Amine Cherifi

Hi Robin, thank you for your help because it is very important that I succeed my printing. with these capture screenshots I tried to show you all the steps of the code. I hope that you can see where there are errors. otherwise I suggest you take control of my PC with TeamViewer if you want. Thank you very much.
Best regards

{Zebra.Sdk.Comm.ConnectionException: Could not open connection string "AC:3F:A4:1F:2A:F5"
&nbsp; at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in /Users/builder/data/lanes/3511/f4db8a57/source/mono/mcs/class/referencesource/mscorlib/system/runtime/exceptionservices/exceptionservicescommon.cs:143
&nbsp; at Java.Interop.JniEnvironment+StaticMethods.CallStaticObjectMethod (Java.Interop.JniObjectReference type, Java.Interop.JniMethodInfo method, Java.Interop.JniArgumentValue* args) [0x00082] in /Users/builder/data/lanes/3511/0e59c362/source/Java.Interop/src/Java.Interop/Java.Interop/JniEnvironment.g.cs:12649
&nbsp; at Android.Runtime.JNIEnv.CallStaticObjectMethod (System.IntPtr jclass, System.IntPtr jmethod, Android.Runtime.JValue* parms) [0x00000] in /Users/builder/data/lanes/3511/0e59c362/source/monodroid/src/Mono.Android/JNIEnv.g.cs:562
&nbsp; at Zebra.Sdk.Comm.ConnectionBuilder.Build (System.String p0) [0x00049] in C:\repos\xamarin-sdk\Binding Libraries\ZSDK_ANDROIDX\ZSDK_ANDROIDX\obj\Release\generated\src\Zebra.Sdk.Comm.ConnectionBuilder.cs:54
&nbsp; at LinkOS.Plugin.ConnectionBuilderImplementation.Build (System.String connectionString) [0x00000] in C:\repos\xamarin-sdk\Link_OS_SDK_for_Xamarin_Portable\LinkOS\LinkOS.Plugin.Android\ConnectionBuilderImplementation.cs:19
&nbsp; at AppTestBluetooth5.MainActivity.Print (System.String address) [0x00026] in D:\TestAppli\AppTestBluetooth5\AppTestBluetooth5\MainActivity.cs:59
&nbsp; --- End of managed Zebra.Sdk.Comm.ConnectionException stack trace ---
com.zebra.sdk.comm.ConnectionException: Could not open connection string "AC:3F:A4:1F:2A:F5"
&nbsp; at com.zebra.sdk.comm.internal.ConnectionBuilderInternal.build(Unknown Source)
&nbsp; at com.zebra.sdk.comm.ConnectionBuilder.build(Unknown Source)
&nbsp; at dalvik.system.NativeStart.run(Native Method)
}

===============================================================================
Exit:

10-10 11:03:05.316 D/BasicPrintApp(18505): Zebra.Sdk.Comm.ConnectionException: Could not open connection string "AC:3F:A4:1F:2A:F5"
10-10 11:03:05.316 D/BasicPrintApp(18505):&nbsp;&nbsp; at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x0000c] in /Users/builder/data/lanes/3511/f4db8a57/source/mono/mcs/class/referencesource/mscorlib/system/runtime/exceptionservices/exceptionservicescommon.cs:143
10-10 11:03:05.316 D/BasicPrintApp(18505):&nbsp;&nbsp; at Java.Interop.JniEnvironment+StaticMethods.CallStaticObjectMethod (Java.Interop.JniObjectReference type, Java.Interop.JniMethodInfo method, Java.Interop.JniArgumentValue* args) [0x00082] in /Users/builder/data/lanes/3511/0e59c362/source/Java.Interop/src/Java.Interop/Java.Interop/JniEnvironment.g.cs:12649
10-10 11:03:05.316 D/BasicPrintApp(18505):&nbsp;&nbsp; at Android.Runtime.JNIEnv.CallStaticObjectMethod (System.IntPtr jclass, System.IntPtr jmethod, Android.Runtime.JValue* parms) [0x00000] in /Users/builder/data/lanes/3511/0e59c362/source/monodroid/src/Mono.Android/JNIEnv.g.cs:562
10-10 11:03:05.316 D/BasicPrintApp(18505):&nbsp;&nbsp; at Zebra.Sdk.Comm.ConnectionBuilder.Build (System.String p0) [0x00049] in C:\repos\xamarin-sdk\Binding Libraries\ZSDK_ANDROIDX\ZSDK_ANDROIDX\obj\Release\generated\src\Zebra.Sdk.Comm.ConnectionBuilder.cs:54
10-10 11:03:05.316 D/BasicPrintApp(18505):&nbsp;&nbsp; at LinkOS.Plugin.ConnectionBuilderImplementation.Build (System.String connectionString) [0x00000] in C:\repos\xamarin-sdk\Link_OS_SDK_for_Xamarin_Portable\LinkOS\LinkOS.Plugin.Android\ConnectionBuilderImplementation.cs:19
10-10 11:03:05.316 D/BasicPrintApp(18505):&nbsp;&nbsp; at AppTestBluetooth5.MainActivity.Print (System.String address) [0x00026] in D:\TestAppli\AppTestBluetooth5\AppTestBluetooth5\MainActivity.cs:59
10-10 11:03:05.316 D/BasicPrintApp(18505):&nbsp;&nbsp; --- End of managed Zebra.Sdk.Comm.ConnectionException stack trace ---
10-10 11:03:05.316 D/BasicPrintApp(18505): com.zebra.sdk.comm.ConnectionException: Could not open connection string "AC:3F:A4:1F:2A:F5"
10-10 11:03:05.316 D/BasicPrintApp(18505): at com.zebra.sdk.comm.internal.ConnectionBuilderInternal.build(Unknown Source)
10-10 11:03:05.316 D/BasicPrintApp(18505): at com.zebra.sdk.comm.ConnectionBuilder.build(Unknown Source)
10-10 11:03:05.316 D/BasicPrintApp(18505): at dalvik.system.NativeStart.run(Native Method)
Thread started: #7
Thread started: #8
10-10 11:03:05.371 D/Mono&nbsp;&nbsp;&nbsp; (18505): [0x63ad00] worker starting
Thread finished: #3
10-10 11:03:36.160 D/Mono&nbsp;&nbsp;&nbsp; (18505): [0x6284e8] worker finishing
Le thread 'Unknown' (0x3) s'est arrêté avec le code 0 (0x0).

Y Yi Yang Ang

hi any reply on this?

here's my code:
private void PrintByZebraPrinter() &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; IConnection connection = null; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Acr.UserDialogs.UserDialogs.Instance.ShowLoading("Connecting to printer..."); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Task task = new Task(new Action(() =&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; try &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // BlueTooth &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Android - address is the printer's BT MAC address. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // iOS - address is the printer's serial number. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; connection = ConnectionBuilder.Current.Build(String.Format("BT:{0}", Config.PrinterAddress)); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; connection.Open(); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; IPrinterStatus status; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!ZebraHelper.PreCheckPrinterStatus(connection, out status)) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Device.BeginInvokeOnMainThread(() =&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DisplayAlert("", "Unable to print. Printer is " + status.Status, "OK"); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; foreach (var cmd in downloadCommand) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; connection.Write(Encoding.UTF8.GetBytes(cmd)); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; connection.Write(Encoding.UTF8.GetBytes(ConstructZPL())); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!ZebraHelper.PostPrintCheckStatus(connection, out status)) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Device.BeginInvokeOnMainThread(() =&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DisplayAlert("", "Error durring print. Printer is " + status.Status, "OK"); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; catch (Exception ex) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string message = ex.Message; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; message = string.Format("Please make sure printer and your phone's bluetooth are turned on."); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Device.BeginInvokeOnMainThread(() =&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DisplayAlert("Could not connect to printer", message, "OK"); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; finally &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Acr.UserDialogs.UserDialogs.Instance.HideLoading(); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (connection != null) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (connection.IsConnected) &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; connection.Close(); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DependencyService.Get&lt;IInfoService&gt;().DisconnectBluetoothDevice(); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; })); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; task.Start(); &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }

P Pete Thomson

Hi Angelo,
I believe that a heap size over 1G is ignored, but I'm not 100% certain, so I had already tried 2G anyway.

I concluded that as the Link OS SDK contains so much functionallity, it is very bloated and was overkill for my application, so I created my own functions to talk to the printer using TcpClient and used that instead.

Cheers,
Pete

V Vedsatx Saddvv

Hi Kevin,
Many of our printers have the Bluetooth MAC as a barcode on the back of the printer.&nbsp; Many also have an <a href="https://www.zebra.com/us/en/products/software/barcode-printers/link-os/… chip</a> with the MAC address encoded in it as well.&nbsp; We have some sample code showing how to scan and pair or tap and pair <a href="https://km.zebra.com/kb/index?page=content&amp;id=SA348">here</a>.&nbsp; You can pair with a printer using the Android Bluetooth Manager, but you have to connect to the printer via your sample app, so the above code is still valid.&nbsp; Hope that answers your question.&nbsp; EDIT: The EMDK for Xamarin also has some scan and pair/Tap and Pair API's.