You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you do not wish to provide an Apple-authenticated identity, but still wish to sign your application, you can configure an _ad-hoc_ signature.
189
+
190
+
This is useful on ARM (Apple Silicon) devices, where code-signing is required for all apps from the Internet.
191
+
192
+
:::caution
193
+
Ad-hoc code signing does not prevent MacOS from requiring users to
194
+
[whitelist the installation in their Privacy & Security settings](https://support.apple.com/guide/mac-help/open-a-mac-app-from-an-unknown-developer-mh40616/mac).
195
+
:::
196
+
197
+
To configure an ad-hoc signature, provide the pseudo-identity `-` to Tauri, e.g.
198
+
199
+
```json
200
+
"signingIdentity": "-"
201
+
```
202
+
203
+
For details on configuring Tauri's signing identity, see [above](#configuring-tauri).
0 commit comments