|
|
5 years ago | |
|---|---|---|
| .. | ||
| README.md | 5 years ago | |
| attrs-error.png | 5 years ago | |
README.md
Native distributions & local execution
What is covered
In this tutorial, we'll show you how to create native distributions (installers/packages) for all the supported systems. We will also demonstrate how to run an application locally with the same settings as for distributions.
Gradle plugin
org.jetbrains.compose Gradle plugin simplifies the packaging of applications into native distributions and running an application locally.
Currently, the plugin uses jpackage for packaging distributable applications. Distributable applications are self-contained, installable binaries which include all the Java runtime components they need, without requiring an installed JDK on the target system.
Jlink will take care of bundling only the necessary Java Modules in
the distributable package to minimize package size,
but you must still configure the Gradle plugin to tell it which modules you need
(see the Configuring included JDK modules section).
Basic usage
The basic unit of configuration in the plugin is an application.
An application defines a shared configuration for a set of final binaries.
In other words, an application in DSL allows you to pack a bunch of files,
together with a JDK distribution, into a set of compressed binary installers
in various formats (.dmg, .deb, .msi, .exe, etc).
import org.jetbrains.compose.compose
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
plugins {
kotlin("jvm")
id("org.jetbrains.compose")
}
dependencies {
implementation(compose.desktop.currentOS)
}
compose.desktop {
application {
mainClass = "example.MainKt"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
}
}
}
The plugin creates the following tasks:
package<FormatName>(e.g.packageDmgorpackageMsi) are used for packaging the app into the corresponding format. Note, that there is no cross-compilation support available at the moment, so the formats can only be built using the specific OS (e.g. to build.dmgyou have to use macOS). Tasks that are not compatible with the current OS are skipped by default.packageis a lifecycle task, aggregating all package tasks for an application.packageUberJarForCurrentOSis used to create a single jar file, containing all dependencies for current OS. The task is available starting from the M2 release. The task expectscompose.desktop.currentOSto be used as acompile/implementation/runtimedependency.runis used to run an app locally. You need to define amainClass— an fq-name of a class, containing themainfunction. Note, thatrunstarts a non-packaged JVM application with full runtime. This is faster and easier to debug, than creating a compact binary image with minified runtime. To run a final binary image, userunDistributableinstead.createDistributableis used to create a prepackaged application image a final application image without creating an installer.runDistributableis used to run a prepackaged application image.
Note, that the tasks are created only if the application block/property is used in a script.
After a build, output binaries can be found in ${project.buildDir}/compose/binaries.
Configuring included JDK modules
The Gradle plugin uses jlink to minimize a distributable size by including only necessary JDK modules.
At this time, the Gradle plugin does not automatically determine necessary JDK Modules.
Failure to provide the necessary modules will not cause compilation issues,
but will lead to ClassNotFoundException at runtime.
If you encounter ClassNotFoundException when running a packaged application or
runDistributable task, you can include additional JDK modules using
modules DSL method (see example below).
You can determine, which modules are necessary either by hand or by running
suggestModules task. suggestModules uses the jdeps
static analysis tool to determine possible missing modules. Note, that the output of the tool
might be incomplete or list unnecessary modules.
If a distributable size is not critical, you may simply include all runtime modules as an alternative
by using includeAllModules DSL property.
compose.desktop {
application {
nativeDistributions {
modules("java.sql")
// alternatively: includeAllModules = true
}
}
}
Available formats
The following formats available for the supported operating systems:
- macOS —
.dmg(TargetFormat.Dmg),.pkg(TargetFormat.Pkg) - Windows —
.exe(TargetFormat.Exe),.msi(TargetFormat.Msi) - Linux —
.deb(TargetFormat.Deb),.rpm(TargetFormat.Rpm)
Signing & notarization on macOS
By default, Apple does not allow users to execute unsigned applications downloaded from the internet. Users attempting to run such applications will be faced with an error like this:
See our tutorial on how to sign and notarize your application.
Specifying package version
You must specify a package version for native distribution packages.
You can use the following DSL properties (in order of descending priority):
nativeDistributions.<os>.<packageFormat>PackageVersionspecifies a version for a single package format;nativeDistributions.<os>.packageVersionspecifies a version for a single target OS;nativeDistributions.packageVersionspecifies a version for all packages;
compose.desktop {
application {
nativeDistributions {
// a version for all distributables
packageVersion = "..."
linux {
// a version for all Linux distributables
packageVersion = "..."
// a version only for the deb package
debVersion = "..."
// a version only for the rpm package
rpmVersion = "..."
}
macOS {
// a version for all macOS distributables
packageVersion = "..."
// a version only for the dmg package
dmgVersion = "..."
// a version only for the pkg package
pkgVersion = "..."
}
windows {
// a version for all Windows distributables
packageVersion = "..."
// a version only for the msi package
msiVersion = "..."
// a version only for the exe package
exeVersion = "..."
}
}
}
}
Versions must follow the rules:
- For
dmgandpkg:- The format is
MAJOR[.MINOR][.PATCH], where:MAJORis an integer > 0;MINORis an optional non-negative integer;PATCHis an optional non-negative integer;
- The format is
- For
msiandexe:- The format is
MAJOR.MINOR.BUILD, where:MAJORis a non-negative integer with a maximum value of 255;MINORis a non-negative integer with a maximum value of 255;BUILDis a non-negative integer with a maximum value of 65535;
- The format is
- For
deb:- The format is
[EPOCH:]UPSTREAM_VERSION[-DEBIAN_REVISION], where:EPOCHis an optional non-negative integer;UPSTREAM_VERSION- may contain only alphanumerics and the characters
.,+,-,~; - must start with a digit;
- may contain only alphanumerics and the characters
DEBIAN_REVISION- is optional;
- may contain only alphanumerics and the characters
.,+,~;
- See Debian documentation for more details;
- The format is
- For
rpm:- A version must not contain the
-(dash) character.
- A version must not contain the
Customizing JDK version
The plugin uses jpackage, for which you should be using at least JDK 15.
Make sure you meet at least one of the following requirements:
JAVA_HOMEenvironment variable points to the compatible JDK version.javaHomeis set via DSL:
compose.desktop {
application {
javaHome = System.getenv("JDK_15")
}
}
Customizing output dir
compose.desktop {
application {
nativeDistributions {
outputBaseDir.set(project.buildDir.resolve("customOutputDir"))
}
}
}
Customizing launcher
The following properties are available for customizing the application startup:
mainClass— a fully-qualified name of a class, containing the main method;args— arguments for the application's main method;jvmArgs— arguments for the application's JVM.
compose.desktop {
application {
mainClass = "MainKt"
jvmArgs += listOf("-Xmx2G")
args += listOf("-customArgument")
}
}
Customizing metadata
The following properties are available in the nativeDistributions DSL block:
packageName— application's name (default value: Gradle project's name);version— application's version (default value: Gradle project's version);description— application's description (default value: none);copyright— application's copyright (default value: none);vendor— application's vendor (default value: none).
compose.desktop {
application {
nativeDistributions {
packageName = "ExampleApp"
version = "0.1-SNAPSHOT"
description = "Compose Example App"
copyright = "© 2020 My Name. All rights reserved."
vendor = "Example vendor"
}
}
}
Customizing content
The plugin can configure itself, when either org.jetbrains.kotlin.jvm or org.jetbrains.kotlin.multiplatform plugins
are used.
- With
org.jetbrains.kotlin.jvmthe plugin includes content from themainsource set. - With
org.jetbrains.kotlin.multiplatformthe plugin includes content a single jvm target. The default configuration is disabled if multiple JVM targets are defined. In this case, the plugin should be configured manually, or a single target should be specified (see below).
If the default configuration is ambiguous or not sufficient, the plugin can be configured:
- Using a Gradle source set
plugins {
kotlin("jvm")
id("org.jetbrains.compose")
}
val customSourceSet = sourceSets.create("customSourceSet")
compose.desktop {
application {
from(customSourceSet)
}
}
- Using a Kotlin JVM target:
plugins {
kotlin("multiplatform")
id("org.jetbrains.compose")
}
kotlin {
jvm("customJvmTarget") {}
}
compose.desktop {
application {
from(kotlin.targets["customJvmTarget"])
}
}
- manually:
disableDefaultConfigurationcan be used to disable the default configuration;dependsOncan be used to add task dependencies to all plugin's tasks;fromFilescan be used to specify files to include;mainJarfile property can be specified to point to a jar, containing a main class.
compose.desktop {
application {
disableDefaultConfiguration()
fromFiles(project.fileTree("libs/") { include("**/*.jar") })
mainJar.set(project.file("main.jar"))
dependsOn("mainJarTask")
}
}
Platform-specific options
Platform-specific options should be set using the corresponding DSL blocks:
compose.desktop {
application {
nativeDistributions {
macOS {
// macOS specific options
}
windows {
// Windows specific options
}
linux {
// Linux specific options
}
}
}
}
The following platform-specific options are available (the usage of non-documented properties is not recommended):
- All platforms:
iconFile.set(File("PATH_TO_ICON"))— a path to a platform-specific icon for the application. (see the sectionApp iconfor details);packageVersion = "1.0.0"— a platform-specific package version (see the sectionSpecifying package versionfor details);installationPath = "PATH_TO_INSTALL_DIR"— an absolute or relative path to the default installation directory;- On Windows
dirChooser = truemay be used to enable customizing the path during installation.
- On Windows
- Linux:
packageName = "custom-package-name"overrides the default application name;debMaintainer = "maintainer@example.com"— an email of the deb package's maintainer;menuGroup = "my-example-menu-group"— a menu group for the application;appRelease = "1"— a release value for the rpm package, or a revision value for the deb package;appCategory = "CATEGORY"— a group value for the rpm package, or a section value for the deb package;rpmLicenseType = "TYPE_OF_LICENSE"— a type of license for the rpm package;debPackageVersion = "DEB_VERSION"— a deb-specific package version (see the sectionSpecifying package versionfor details);rpmPackageVersion = "RPM_VERSION"— a rpm-specific package version (see the sectionSpecifying package versionfor details);
- macOS:
bundleID— a unique application identifier;- May only contain alphanumeric characters (
A-Z,a-z,0-9), hyphen (-) and period (.) characters; - Use of a reverse DNS notation (e.g.
com.mycompany.myapp) is recommended;
- May only contain alphanumeric characters (
packageName— a name of the application;dockName— a name of the application displayed in the menu bar, the "About " menu item, in the dock, etc. Equals topackageNameby default.signingandnotarization— see the corresponding tutorial for details;dmgPackageVersion = "DMG_VERSION"— a dmg-specific package version (see the sectionSpecifying package versionfor details);pkgPackageVersion = "PKG_VERSION"— a pkg-specific package version (see the sectionSpecifying package versionfor details);infoPlist— see the sectionCustomizing Info.plist on macOSfor details;
- Windows:
console = trueadds a console launcher for the application;dirChooser = trueenables customizing the installation path during installation;perUserInstall = trueenables installing the application on a per-user basismenuGroup = "start-menu-group"adds the application to the specified Start menu group;upgradeUuid = "UUID"— a unique ID, which enables users to update an app via installer, when an updated version is newer, than an installed version. The value must remain constant for a single application. See the link for details on generating a UUID.msiPackageVersion = "MSI_VERSION"— a msi-specific package version (see the sectionSpecifying package versionfor details);exePackageVersion = "EXE_VERSION"— a pkg-specific package version (see the sectionSpecifying package versionfor details);
App icon
The app icon needs to be provided in OS-specific formats:
.icnsfor macOS;.icofor Windows;.pngfor Linux.
compose.desktop {
application {
nativeDistributions {
macOS {
iconFile.set(project.file("icon.icns"))
}
windows {
iconFile.set(project.file("icon.ico"))
}
linux {
iconFile.set(project.file("icon.png"))
}
}
}
}
Customizing Info.plist on macOS
We aim to support important platform-specific customization use-cases via declarative DSL.
However, the provided DSL is not enough sometimes. If you need to specify Info.plist
values, that are not modeled in the DSL, you can work around by specifying a piece
of raw XML, that will be appended to the application's Info.plist.
Example: deep linking into macOS apps
- Specify a custom URL scheme:
// build.gradle.kts
compose.desktop {
application {
mainClass = "MainKt"
nativeDistributions {
targetFormats(TargetFormat.Dmg)
packageName = "Deep Linking Example App"
macOS {
bundleID = "org.jetbrains.compose.examples.deeplinking"
infoPlist {
extraKeysRawXml = macExtraPlistKeys
}
}
}
}
}
val macExtraPlistKeys: String
get() = """
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>Example deep link</string>
<key>CFBundleURLSchemes</key>
<array>
<string>compose</string>
</array>
</dict>
</array>
"""
"""
- Use
java.awt.Desktopto set up a URI handler:
// src/main/main.kt
import androidx.compose.desktop.Window
import androidx.compose.material.Text
import androidx.compose.material.MaterialTheme
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import java.awt.Desktop
fun main() {
val text = mutableStateOf("Hello, World!")
Desktop.getDesktop().setOpenURIHandler { event ->
text.value = "Open URI: " + event.uri
}
Window {
var text by remember { text }
MaterialTheme {
Text(text)
}
}
}
- Run
./gradlew runDistributable. - Links like
compose://foo/barare now redirected from a browser to your application.
