If you are using Arch Linux, the application is available in the AUR as rvkernel-manager
You can install it using your preferred AUR helper (e.g., yay):
yay -S rvkernel-managerIf you are using Ubuntu or a Debian-based distribution, download the latest .deb file from the Releases page.
Install it by running the following command in your terminal:
sudo apt install ./rvkernel-manager_*.debIf you are using Fedora or a RedHat-based distribution, download the latest .rpm file from the Releases page.
Install it by running the following command in your terminal:
sudo dnf install ./rvkernel-manager-*.rpmThis is a Kotlin Multiplatform project targeting Desktop (JVM).
- /composeApp is for code that will be shared across your Compose Multiplatform applications.
It contains several subfolders:
- commonMain is for code that’s common for all targets.
- Other folders are for Kotlin code that will be compiled for only the platform indicated in the folder name. For example, if you want to use Apple’s CoreCrypto for the iOS part of your Kotlin app, the iosMain folder would be the right place for such calls. Similarly, if you want to edit the Desktop (JVM) specific part, the jvmMain folder is the appropriate location.
To build and run the development version of the desktop app, use the run configuration from the run widget in your IDE’s toolbar or run it directly from the terminal:
- on Linux
./gradlew :composeApp:run
Learn more about Kotlin Multiplatform…
