It's a setup application for libGDX that Just Works with Gradle 5.4, and so Just Works with Java 8-12 (at the least), and so should be a useful way to make new projects, especially for first-time libGDX users. This builds on the first release in some minor ways. The dependencies on Kotlin all assume you use the 1.3.x branch now, which is needed for Kotlin to work at all with Android projects. You may need to update Android Studio if you use that IDE, since this defaults to the latest Android Gradle plugin and that needs Android Studio 3.4.1. Notable features added include GREEN SETUP COMPLETION TEXT, hold your applause, please. More practically, the initial platform selection selects LWJGL3 and Android by default, since they're among the most common platforms used.
You use this much like the other setup jars: assuming you have Java installed (AdoptOpenJDK is recommended), you can run gdx-liftoff-1.9.9.1.jar like any other jar on your OS, and plug in the project name, project package, main class name, project directory, etc. Make sure to check any platforms you want to target; LWJGL3 or "new desktop" is recommended for all projects and is selected by default because it makes it easier to debug. Android is also selected by default and you can uncheck it if you don't intend to target that mobile OS. You can add optional JVM language support; Kotlin should be up-to-date in the 1.3.x branch but other languages are probably going to need updating in your project yourself. You can add various official and third-party extensions (third-party libraries) from the big lists on other tabs, and choose a different starting sample project template if you want. The Advanced tab lets you choose a different minimum JVM level (1.7 is safest for Android, but desktop-only can be 11 or 12 easily), a different libGDX version, and so on; most of the defaults are probably fine to stay with unless you want to use Java 8's Streams and lambdas, which would mean switching Java version to 1.8; a quirk of the naming convention means the setup can't generate projects that need Java 10 or newer, but you can configure that in the generated projects if you are sure users will have that version. When you're ready, press Generate; it's much faster than the official setup for various reasons. You should import the build.gradle file in your chosen project directory in your IDE of choice; the rest of usage follows the libGDX documentation.
I hope this can be useful!