
POS PRINTER DRIVER ESC/POS
Print ESC/POS commands & LOGO pic easily without driver via Net, WIFI, USB & BT.
Fidelier · com.fidelier.posprinterdriver
UpdatedNov 7, 2025
PublishedFeb 28, 2021
Packagecom.fidelier.posprinterdriver
MD59722e11d5845e964e3215654b0a31ff7
SHA1 (signer)DF:84:68:DB:71:D0:35:D2:C8:34:C7:3A:81:56:AF:91:D6:97:C5:3A
Signed byCN=Fidelier, OU=Fidelier Medios de Pago S.L., O=Fidelier Medios de Pago S.L., L=Madrid, ST=Madrid, C=28008
Malware scanTRUSTED
Contact[email protected]
Privacy policyView
What's new
Actualizada para SDK34
Description
2024 Versión MultiPrinting
====
You can be printing in minutes with just a couple lines of code. It's as simple as creating your intent, adding your ESC formatted string and start the (service) intent.
See demo in:
https://bitbucket.org/fidelier/posprinterdrivertest/src
Now it si possible direct logo printing on pro version, just choose a logo on config, and it will be printed on top of every document.
Inverse colors of the logo, make gradient colors.
Print From Web in an android device web. Just make a link:
a href="com.fidelier.printfromweb://?$biguhw$Print From Web$intro$$small$Print small letter$intro$->$intro$->$intro$->$intro$$intro$$intro$$intro$$cut$$intro$"Test print from web/a
Print direct from Server!
Read instruction in the web
Open and close a tag
Include easy helpers for ESC commands like
Easy font size selection.
$qr-s-e-text$
Example $qr-8-50-www.posprinterdriver.com$
Size (1-16)
Error correction (48-51) 7%,15%25%,30%
$small$ For small size
$smallh$ For small size with double hight
$smallw$ For small size with double width
$smallhw$ For small size with double hight and width
$smallu$ For small size underline
$smalluh$ For small size with double hight underline
$smalluw$ For small size with double width underline
$smalluhw$ For small size with double hight and width underline
$big$ For big size
$bigh$ For big size with double hight
$bigw$ For big size with double width
$bighw$ For big size with double hight and width
Add u to underline
$cut$ To cut the paper
$drawer$ To open the first drawer
Example
String dataToPrint="$big$This is a printer test$intro$posprinterdriver.com$intro$$intro$$cut$$intro$";
Intent intentPrint = new Intent();
intentPrint.setAction(Intent.ACTION_SEND);
intentPrint.putExtra(Intent.EXTRA_TEXT, dataToPrint);
intentPrint.setType("text/plain");
this.startActivity(intentPrint);
Direct link print:
String dataToPrint="$big$This is a printer test$intro$posprinterdriver.com$intro$$intro$$cut$$intro$";
Intent intentPrint = new Intent();
intentPrint.setAction(Intent.ACTION_SEND);
intentPrint.putExtra(Intent.EXTRA_TEXT, dataToPrint);
// Link IP:port direct
intentPrint.putExtra("printer_type_id", "1");// For IP
intentPrint.putExtra("printer_ip", printerIpAddress);
intentPrint.putExtra("printer_port", printerPort);
// Link USB:port direct
intentPrint.putExtra("printer_type_id", "3");// For USB
intentPrint.putExtra("printer_usb_product_id", usbProductID);
intentPrint.putExtra("printer_usb_vendor_id", usbVendorId);
intentPrint.putExtra("printer_usb_device_id", usbDeviceID);
// Link BT:port direct
intentPrint.putExtra("printer_type_id", "4");// For bluetooth
intentPrint.putExtra("printer_bt_adress", BtDevice);
intentPrint.setType("text/plain");
intentPrint.setType("text/plain");
Log.i(internalClassName, "sendDataToBTPrinter Start Intent");
**Free version could print ads on your ticket**
====
You can be printing in minutes with just a couple lines of code. It's as simple as creating your intent, adding your ESC formatted string and start the (service) intent.
See demo in:
https://bitbucket.org/fidelier/posprinterdrivertest/src
Now it si possible direct logo printing on pro version, just choose a logo on config, and it will be printed on top of every document.
Inverse colors of the logo, make gradient colors.
Print From Web in an android device web. Just make a link:
a href="com.fidelier.printfromweb://?$biguhw$Print From Web$intro$$small$Print small letter$intro$->$intro$->$intro$->$intro$$intro$$intro$$intro$$cut$$intro$"Test print from web/a
Print direct from Server!
Read instruction in the web
Open and close a tag
Include easy helpers for ESC commands like
Easy font size selection.
$qr-s-e-text$
Example $qr-8-50-www.posprinterdriver.com$
Size (1-16)
Error correction (48-51) 7%,15%25%,30%
$small$ For small size
$smallh$ For small size with double hight
$smallw$ For small size with double width
$smallhw$ For small size with double hight and width
$smallu$ For small size underline
$smalluh$ For small size with double hight underline
$smalluw$ For small size with double width underline
$smalluhw$ For small size with double hight and width underline
$big$ For big size
$bigh$ For big size with double hight
$bigw$ For big size with double width
$bighw$ For big size with double hight and width
Add u to underline
$cut$ To cut the paper
$drawer$ To open the first drawer
Example
String dataToPrint="$big$This is a printer test$intro$posprinterdriver.com$intro$$intro$$cut$$intro$";
Intent intentPrint = new Intent();
intentPrint.setAction(Intent.ACTION_SEND);
intentPrint.putExtra(Intent.EXTRA_TEXT, dataToPrint);
intentPrint.setType("text/plain");
this.startActivity(intentPrint);
Direct link print:
String dataToPrint="$big$This is a printer test$intro$posprinterdriver.com$intro$$intro$$cut$$intro$";
Intent intentPrint = new Intent();
intentPrint.setAction(Intent.ACTION_SEND);
intentPrint.putExtra(Intent.EXTRA_TEXT, dataToPrint);
// Link IP:port direct
intentPrint.putExtra("printer_type_id", "1");// For IP
intentPrint.putExtra("printer_ip", printerIpAddress);
intentPrint.putExtra("printer_port", printerPort);
// Link USB:port direct
intentPrint.putExtra("printer_type_id", "3");// For USB
intentPrint.putExtra("printer_usb_product_id", usbProductID);
intentPrint.putExtra("printer_usb_vendor_id", usbVendorId);
intentPrint.putExtra("printer_usb_device_id", usbDeviceID);
// Link BT:port direct
intentPrint.putExtra("printer_type_id", "4");// For bluetooth
intentPrint.putExtra("printer_bt_adress", BtDevice);
intentPrint.setType("text/plain");
intentPrint.setType("text/plain");
Log.i(internalClassName, "sendDataToBTPrinter Start Intent");
**Free version could print ads on your ticket**
Required features
- Faketouch android.hardware.faketouch
- Wifi android.hardware.wifi
Permissions (22)
POS PRINTER DRIVER ESC/POS requests the following Android permissions:
- Access Adservices Ad Id android.permission.ACCESS_ADSERVICES_AD_ID
- Access Adservices Attribution android.permission.ACCESS_ADSERVICES_ATTRIBUTION
- Access Network State android.permission.ACCESS_NETWORK_STATE
- Access Wifi State android.permission.ACCESS_WIFI_STATE
- Bluetooth android.permission.BLUETOOTH
- Bluetooth Admin android.permission.BLUETOOTH_ADMIN
- Bluetooth Connect android.permission.BLUETOOTH_CONNECT
- Bluetooth Scan android.permission.BLUETOOTH_SCAN
- Foreground Service android.permission.FOREGROUND_SERVICE
- Foreground Service Connected Device android.permission.FOREGROUND_SERVICE_CONNECTED_DEVICE
- Internet android.permission.INTERNET
- Post Notifications android.permission.POST_NOTIFICATIONS
- Read External Storage android.permission.READ_EXTERNAL_STORAGE
- Receive Boot Completed android.permission.RECEIVE_BOOT_COMPLETED
- Usb Permission android.permission.USB_PERMISSION
- Wake Lock android.permission.WAKE_LOCK
- Write External Storage android.permission.WRITE_EXTERNAL_STORAGE
- Com Android Vending Billing com.android.vending.BILLING
- Com Fidelier Posprinterdriver Dynamic Receiver Not Exported Permission com.fidelier.posprinterdriver.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION
- C2dm Permission Receive com.google.android.c2dm.permission.RECEIVE
- Finsky Permission Bind Get Install Referrer Service com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE
- Gms Permission Ad Id com.google.android.gms.permission.AD_ID