Info.plist 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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>Jigsort Solitaire</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>puzzleweave</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>LSRequiresIPhoneOS</key>
  28. <true/>
  29. <key>UIApplicationSupportsIndirectInputEvents</key>
  30. <true/>
  31. <key>UILaunchStoryboardName</key>
  32. <string>LaunchScreen</string>
  33. <key>UIMainStoryboardFile</key>
  34. <string>Main</string>
  35. <key>UISupportedInterfaceOrientations</key>
  36. <array>
  37. <string>UIInterfaceOrientationPortrait</string>
  38. <string>UIInterfaceOrientationLandscapeLeft</string>
  39. <string>UIInterfaceOrientationLandscapeRight</string>
  40. </array>
  41. <key>UISupportedInterfaceOrientations~ipad</key>
  42. <array>
  43. <string>UIInterfaceOrientationPortrait</string>
  44. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  45. <string>UIInterfaceOrientationLandscapeLeft</string>
  46. <string>UIInterfaceOrientationLandscapeRight</string>
  47. </array>
  48. <key>LSApplicationQueriesSchemes</key>
  49. <array>
  50. <string>itms-beta</string>
  51. <string>itms</string>
  52. </array>
  53. <key>FLTEnableSkiaMetal</key>
  54. <true/>
  55. <!-- 启用 Metal 渲染(iOS 13+ 支持,提升 GPU 效率) -->
  56. <key>FLUTTER_RENDERER</key>
  57. <string>metal</string>
  58. <!-- 明确使用metal渲染引擎 -->
  59. <key>NSUserTrackingUsageDescription</key>
  60. <string>This identifier will be used to deliver personalized ads to you.</string>
  61. <key>NSMicrophoneUsageDescription</key>
  62. <string>This app does not require access to the microphone.</string>
  63. <key>NSPhotoLibraryUsageDescription</key>
  64. <string>This app requires access to the photo library.</string>
  65. <key>NSPhotoLibraryAddUsageDescription</key>
  66. <string>This app requires access to the photo library.</string>
  67. <key>UIStatusBarHidden</key>
  68. <true/>
  69. <key>UIViewControllerBasedStatusBarAppearance</key>
  70. <false/>
  71. </dict>
  72. </plist>