Skip to content

MapView black screen but no errors in Android

I am trying to display a location with a MapView but I can’t get it to work. I have already look into all the other threads with the same questions but the solutions don’t work for me. Here is what is supposed to work but doesn’t: I am new to Android Studio and just trying things out. I also…

Lombok getter/setter vs Java 14 record

I love project Lombok but in these days I’m reading and trying some of the new features of java 14. Inside the new capability, there is the record keyword that allows creating a class with already built-in the following functionality: constructor, private final fields, accessors, equals/hashCode, getter…

Removing a Version from a Maven Remote Repo

I have currently been working on my first Maven project and have run into some confusion with Maven versioning. I understand that while developing a new version the SNAPSHOT keyword should be used in the version number. I also understand that a non SNAPSHOT version should only be released once. I was wonderin…