To get it running on Windows without needing a Docker Desktop license I had to do the following:
Firstly I installed docker (not entirely sure this is needed since it didn't come with the actual Docker CLI)
sudo apt install docker
Now we need to add the Docker key to the apt s...
A couple of years ago Google deprecated the support libraries in favor of the new AndroidX library. Jetifier is a tool to do this conversion for you if you are using libraries that still depend on those deprecated support libraries. However, doing this con...
Recently, I ran into a situation where a RESTful API provided me with a list of objects. Normally this isn't a problem since REST provides you with a structure that is easy to convert. The catch was that some objects inside other objects were polymorphic and r...