Thomas
12/15/2021, 12:15 PMAlexander Kurasov[JB]
12/15/2021, 4:00 PMimplementation(compose.desktop.currentOs)
use
implementation(compose.desktop.macos_arm64)
implementation(compose.desktop.macos_x64)
In my undestanding it should include both platform binaries into the bundleThomas
12/15/2021, 4:12 PM.app
it still shows Apple Silicon
instead of Universal
.
I am building the project on an M1 Mac with an ARM64 JDK.
I am not sure what to do about the bundled JRE. Would I need to include it twice (for Intel and for ARM64) or so?Alexander Kurasov[JB]
12/15/2021, 4:52 PMThomas
12/15/2021, 4:53 PMThomas
12/15/2021, 4:54 PMAlexander Kurasov[JB]
12/15/2021, 4:54 PMThomas
12/15/2021, 4:58 PMThomas
12/17/2021, 12:01 AMjames
05/27/2022, 3:24 AMThomas
05/30/2022, 2:15 PMThomas
05/30/2022, 2:16 PMThomas
05/30/2022, 2:17 PMThomas
05/30/2022, 2:18 PMThomas
05/30/2022, 2:18 PMThomas
05/30/2022, 2:23 PMjlink
twice. One time with an Arm64 JDK, second time with an Intel JDK. Then you have two JREs. Must be the exact same JDK version. Then merge the JREs manually using the Apple tools for this into a universal JDK. Then pass that universal JDK to jpackage
. At least that is what I am going to try when I look into it again.Thomas
11/03/2022, 12:24 PM