PrintJob pj = new StaticOrderPrintJob.Builder().order(mOrder).build(); pj.print(mContext, AccountData.sCloverAccount, printers.get(2));
But this doesn't work;
new TextPrintJob.Builder().text("Hello world!").build().print(mContext, AccountData.sCloverAccount, printers.get(2));
Is that expected/why? Is there a different technique?