Info.plist 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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>CADisableMinimumFrameDurationOnPhone</key>
  6. <true/>
  7. <key>CFBundleDevelopmentRegion</key>
  8. <string>$(DEVELOPMENT_LANGUAGE)</string>
  9. <key>CFBundleDisplayName</key>
  10. <string>RustDesk</string>
  11. <key>CFBundleExecutable</key>
  12. <string>$(EXECUTABLE_NAME)</string>
  13. <key>CFBundleIdentifier</key>
  14. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  15. <key>CFBundleInfoDictionaryVersion</key>
  16. <string>6.0</string>
  17. <key>CFBundleName</key>
  18. <string>RustDesk</string>
  19. <key>CFBundlePackageType</key>
  20. <string>APPL</string>
  21. <key>CFBundleShortVersionString</key>
  22. <string>$(FLUTTER_BUILD_NAME)</string>
  23. <key>CFBundleSignature</key>
  24. <string>????</string>
  25. <key>CFBundleVersion</key>
  26. <string>$(FLUTTER_BUILD_NUMBER)</string>
  27. <key>CFBundleURLTypes</key>
  28. <array>
  29. <dict>
  30. <key>CFBundleTypeRole</key>
  31. <string>Editor</string>
  32. <key>CFBundleURLIconFile</key>
  33. <string></string>
  34. <key>CFBundleURLName</key>
  35. <string>com.carriez.rustdesk</string>
  36. <key>CFBundleURLSchemes</key>
  37. <array>
  38. <string>rustdesk</string>
  39. </array>
  40. </dict>
  41. </array>
  42. <key>LSRequiresIPhoneOS</key>
  43. <true/>
  44. <key>UIApplicationSupportsIndirectInputEvents</key>
  45. <true/>
  46. <key>UILaunchStoryboardName</key>
  47. <string>LaunchScreen</string>
  48. <key>UIMainStoryboardFile</key>
  49. <string>Main</string>
  50. <key>UISupportedInterfaceOrientations</key>
  51. <array>
  52. <string>UIInterfaceOrientationPortrait</string>
  53. <string>UIInterfaceOrientationLandscapeLeft</string>
  54. <string>UIInterfaceOrientationLandscapeRight</string>
  55. </array>
  56. <key>UISupportedInterfaceOrientations~ipad</key>
  57. <array>
  58. <string>UIInterfaceOrientationPortrait</string>
  59. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  60. <string>UIInterfaceOrientationLandscapeLeft</string>
  61. <string>UIInterfaceOrientationLandscapeRight</string>
  62. </array>
  63. <key>UIViewControllerBasedStatusBarAppearance</key>
  64. <false/>
  65. <key>ITSAppUsesNonExemptEncryption</key>
  66. <false/>
  67. <key>io.flutter.embedded_views_preview</key>
  68. <true/>
  69. <key>NSCameraUsageDescription</key>
  70. <string>This app needs camera access to scan QR codes</string>
  71. <key>NSPhotoLibraryUsageDescription</key>
  72. <string>This app needs photo library access to get QR codes from image</string>
  73. <key>CADisableMinimumFrameDurationOnPhone</key>
  74. <true/>
  75. <key>UIApplicationSupportsIndirectInputEvents</key>
  76. <true/>
  77. </dict>
  78. </plist>