From a422deecdbbe763aef2b5b1dba7c19b7b784ad58 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Tue, 19 May 2026 10:15:16 +0100 Subject: [PATCH] Re-add jpdfium-natives-darwin-x64 (Intel Mac) runtime dep The publish-github-packages workflow's restored darwin-x64 build now cross-compiles from macos-14 under Rosetta + a second Homebrew, so the natives jar is available again. Adding it back to the bootJar classpath lets the tauri-build macos-15 universal binary cover Intel Macs too. --- app/common/build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/common/build.gradle b/app/common/build.gradle index 42af2aa72e..ed99d3f162 100644 --- a/app/common/build.gradle +++ b/app/common/build.gradle @@ -67,8 +67,7 @@ dependencies { api 'com.stirling:jpdfium:1.0.0-SNAPSHOT' runtimeOnly 'com.stirling:jpdfium-natives-linux-x64:1.0.0-SNAPSHOT' runtimeOnly 'com.stirling:jpdfium-natives-linux-arm64:1.0.0-SNAPSHOT' + runtimeOnly 'com.stirling:jpdfium-natives-darwin-x64:1.0.0-SNAPSHOT' runtimeOnly 'com.stirling:jpdfium-natives-darwin-arm64:1.0.0-SNAPSHOT' runtimeOnly 'com.stirling:jpdfium-natives-windows-x64:1.0.0-SNAPSHOT' - // TODO: jpdfium-natives-darwin-x64 (Intel Mac) — restore once JPDFium's - // upstream publish pipeline gets dual-arch Homebrew set up. }