Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Include hint about adding jdk.unsupported to the native distribution #140

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ A multiplatform compose widget for picking files with each platform's Native Fil
implementation("com.darkrockstudios:mpfilepicker:3.1.0")
```

For use in compose desktops native distribution, include this in your build.gradle.kts as well:
```build.gradle.kts
compose.desktop.application {
nativeDistributions {
modules("jdk.unsupported")
}
}
```

## How to use

In your shared jetbrains compose multiplatform code, add one of the following.
Expand Down