Info.plist 823 B

123456789101112131415161718192021
  1. <!-- Add this file next to your tauri.conf.json file -->
  2. <?xml version="1.0" encoding="UTF-8"?>
  3. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  4. <plist version="1.0">
  5. <dict>
  6. <key>CFBundleURLTypes</key>
  7. <array>
  8. <dict>
  9. <key>CFBundleURLName</key>
  10. <!-- Obviously needs to be replaced with your app's bundle identifier -->
  11. <string>com.tauri.dev-file-associations-demo</string>
  12. <key>CFBundleURLSchemes</key>
  13. <array>
  14. <!-- register the myapp:// and myscheme:// schemes -->
  15. <string>myapp</string>
  16. <string>myscheme</string>
  17. </array>
  18. </dict>
  19. </array>
  20. </dict>
  21. </plist>