Andrés Zsögön

Results 72 comments of Andrés Zsögön

The workaround I found (so far) is to edit **AndroidManifest.xml** and replace:`android:theme="@style/Theme.AppCompat.NoActionBar"` with: `android:theme="@style/Theme.App.SplashScreen"` **However, everytime the app is built, this change is reverted**. Any ideas on how to workaround...

Thanks Norman, instead of dealing all the plugins I simply added this to my **config.xml** to have the proper style set automatically on build time: ```xml ``` For anyone else...

Hi, the plugin demo app, the printQRCode and printBarcode methods are my additions. The **printQRCode** function uses commands as shown in the [GS ( k ](https://reference.epson-biz.com/modules/ref_escpos/index.php?content_id=144) reference from EPSON and...

Just examine the [demo app source code](https://www.andreszsogon.com/cordova-bluetooth-printer-plugin-demo-app/), in particular, button action to disable inverted color: ```javascript $('#disableInverted').click(function () { // Disable inverted color var bytes = '1D4200'; $('#txtPOS').val(bytes); $('#printPOSCommand').click(); $('#invertedIcon').fadeOut();...

You could try to send the printer alignment command before starting a new line, that is: ``` Print "2 Coca-Cola" Send POST command for right alignment Print "€3" Send POST...

You can't unless your **printer's manual** specifically implemented a custom POS command for such size,

That would be great. For the moment, `navigator.userAgent` retrieves the string, at least in android and browser platforms.

For anyone else using vanilla Cordova, the solution is to se the proper theme for AndroidManifest.xml in your **config.xml** as follows: ```xml ``` This requires the XML namespace `xmlns:android="http://schemas.android.com/apk/res/android"` in...

And this is the LTS _recommended_ version to install, the one that does not come pre compiled and does not work at all? It must be a joke. Who updates...

I strongly agree with @borgold. I've just installed latest Node LTS version following Microsoft advice, and of course, the result is that I only get this error when trying to...