JavaScript is required
Blog About

Tauri 打包踩坑

2025/03/07
3 mins read
See this issue
# 开发实践
Back

# 卡 wix311-binaries.zip

手动下载包,到 C:\Users\你的用户名\AppData\Local\目录下新建名为 tauri 的文件夹,然后新建 WixTools314文件夹,然后把解压的内容放到这个文件夹下

# 卡 nsis-3.zip

接上部,然后新建 NSIS文件夹,然后把解压的内容放到这个文件夹下

# NSIS 自动删除

文件缺失会导致自动删除,缺少2个插件,代码会检测 C:\Users\Wang\AppData\Local\tauri\NSIS\Plugins\x86-unicode 路径下的 ApplicationID.dll 和 nsis_tauri_utils.dll 是否存在

// 这两个插件可能有最新版的,没关系,先下载下来复制过去,控制台会检测最新版本的,会提供新的链接
// NSIS_APPLICATIONID_URL
https://github.com/tauri-apps/binary-releases/releases/download/nsis-plugins-v0/NSIS-ApplicationID.zip
// NSIS_TAURI_UTILS
https://github.com/tauri-apps/nsis-tauri-utils/releases/download/nsis_tauri_utils-v0.1.1/nsis_tauri_utils.dll

解压包,把里面的 NSIS-ApplicationID\ReleaseUnicode 目录下的ApplicationID.dll 复制到 NSIS\Plugins\x86-unicode

nsis_tauri_utils.dll直接复制到NSIS\Plugins\x86-unicode

# 打包程序图标不更新

需要清除cargo缓存

cd src-tauri
cargo clean
cd ..
pnpm tauri build

# 打包后图标在部分大小下依然显示默认图标

默认配置有缺失,补充配置

// ...
"icon": [
    "icons/32x32.png",
    "icons/64x64.png",
    "icons/128x128.png",
    "icons/128x128@2x.png",
    "icons/icon.icns",
    "icons/icon.ico",
    "icons/Square30x30Logo.png",
    "icons/Square44x44Logo.png",
    "icons/Square71x71Logo.png",
    "icons/Square89x89Logo.png",
    "icons/Square107x107Logo.png",
    "icons/Square142x142Logo.png",
    "icons/Square150x150Logo.png",
    "icons/Square284x284Logo.png",
    "icons/Square310x310Logo.png",
    "icons/StoreLogo.png"
  ]