Info.plist 709 B

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