plokko
plokko
Thank you @mauritslamers ! I was also struggling on getting an arm64 build with no results, i can't wait to try it out!
It works on my Nanopi-k2 (Amlogic s905,on default image ubuntu-core xenial)! i had just to install few dependencies: `sudo apt-get install -y libgconf-2-4 libxss1` thanks again!
I added a CoffeImage implementation to use Android Bitmap instead of BufferedImage Example code: ```Kotlin val bm = BitmapFactory.decodeResource(resources, R.mipmap.myimage) val imageWrapper = BitImageWrapper() val algorithm = BitonalOrderedDither() val escposImage...
I added a CoffeImage implementation to use Android Bitmap instead of BufferedImage Example code: ```Kotlin val bm = BitmapFactory.decodeResource(resources, R.mipmap.myimage) val imageWrapper = BitImageWrapper() val algorithm = BitonalOrderedDither() val escposImage...
Similar problem here: Php Debug v1.34.0 Running on devcontainer (WSL2) Launch.json ```json { "name": "XDebug", "type": "php", "request": "launch", "hostname": "unix:///tmp/xdebug.sock" }, ``` Debug console: ``` [Error: getaddrinfo ENOTFOUND unix:///tmp/xdebug.sock...
> @plokko This is very strange. It looks like the `unix://` would not be truncated before server listen gets invoked. Do you perhaps have some other extension installed that also...
> Actually `devsense.phptools-vscode` also contains a PHP debugger that is similar but slightly different than this official Xdebug extension. There is currently no way that these two extensions can co-exist...
I can confirm the bug: a Flutter downgrade from Flutter (Channel stable, 3.22.2, on Microsoft Windows [Versione 10.0.22631.3737], locale it-IT) to v3.19.6 seems to have fixed the issue. Please do...
> Run a `flutter clean` and `flutter pub upgrade` to fix the issue. Already tried multiple `flutter clean`, `dart pub clean` and `flutter pub upgrade` but did not solve the...
I already found examples of implementations and it should be doable with few line of Python/P4A; you should find few examples on the web [like this](https://github.com/Android-for-Python/Share-Receive-Example). Anyway thank you for...