I've been trying to package and submit a legacy Ja...
# compose-desktop
r
I've been trying to package and submit a legacy Java/JavaFX app to the Apple App Store, and I'm running into an issue where Apple's "Transporter" says I need to submit a bundle that supports both x86_64 and arm64 in one. I know Compose Desktop Gradle build tools can make a signed PKG artifact (
TargetFormat.PKG
) and notarize it. If I were to convert the legacy app as needed to use this build system, would the resulting PKG be correctly set up to work on both x86_64 and arm64 like Transporter wants?
🚫 1
m
For macOS you can set the minimum system version to something >= 12 in order to achieve that.
Copy code
minimumSystemVersion = "12" // Allows pure ARM apps in the App Store.
r
Fair enough. Thanks for the info!
m