mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 16:41:34 +03:00
3b98141aa2
Co-authored-by: Amr Bashir <amr.bashir2015@gmail.com> Co-authored-by: Lucas Nogueira <lucas@tauri.studio> Co-authored-by: Raphii <iam@raphii.co> Co-authored-by: Fabian-Lars <fabianlars@fabianlars.de> Co-authored-by: Lucas Nogueira <lucas@tauri.app>
22 lines
823 B
Plaintext
22 lines
823 B
Plaintext
<!-- Add this file next to your tauri.conf.json file -->
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>CFBundleURLTypes</key>
|
|
<array>
|
|
<dict>
|
|
<key>CFBundleURLName</key>
|
|
<!-- Obviously needs to be replaced with your app's bundle identifier -->
|
|
<string>com.tauri.dev-file-associations-demo</string>
|
|
<key>CFBundleURLSchemes</key>
|
|
<array>
|
|
<!-- register the myapp:// and myscheme:// schemes -->
|
|
<string>myapp</string>
|
|
<string>myscheme</string>
|
|
</array>
|
|
</dict>
|
|
</array>
|
|
</dict>
|
|
</plist>
|