Info.plist 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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>NSCameraUsageDescription</key>
  6. <string>Camera permission is required for barcode scanning.</string>
  7. <key>CFBundleDevelopmentRegion</key>
  8. <string>en</string>
  9. <key>CFBundleExecutable</key>
  10. <string>$(EXECUTABLE_NAME)</string>
  11. <key>CFBundleIdentifier</key>
  12. <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
  13. <key>CFBundleInfoDictionaryVersion</key>
  14. <string>6.0</string>
  15. <key>CFBundleName</key>
  16. <string>flutter_osc</string>
  17. <key>CFBundlePackageType</key>
  18. <string>APPL</string>
  19. <key>CFBundleShortVersionString</key>
  20. <string>1.0</string>
  21. <key>CFBundleSignature</key>
  22. <string>????</string>
  23. <key>CFBundleVersion</key>
  24. <string>1</string>
  25. <key>LSRequiresIPhoneOS</key>
  26. <true/>
  27. <key>NSAppTransportSecurity</key>
  28. <dict>
  29. <key>NSAllowsArbitraryLoads</key>
  30. <true/>
  31. </dict>
  32. <key>UILaunchStoryboardName</key>
  33. <string>LaunchScreen</string>
  34. <key>UIMainStoryboardFile</key>
  35. <string>Main</string>
  36. <key>UIRequiredDeviceCapabilities</key>
  37. <array>
  38. <string>arm64</string>
  39. </array>
  40. <key>UISupportedInterfaceOrientations</key>
  41. <array>
  42. <string>UIInterfaceOrientationPortrait</string>
  43. <string>UIInterfaceOrientationLandscapeLeft</string>
  44. <string>UIInterfaceOrientationLandscapeRight</string>
  45. </array>
  46. <key>UISupportedInterfaceOrientations~ipad</key>
  47. <array>
  48. <string>UIInterfaceOrientationPortrait</string>
  49. <string>UIInterfaceOrientationPortraitUpsideDown</string>
  50. <string>UIInterfaceOrientationLandscapeLeft</string>
  51. <string>UIInterfaceOrientationLandscapeRight</string>
  52. </array>
  53. <key>UIViewControllerBasedStatusBarAppearance</key>
  54. <false/>
  55. </dict>
  56. </plist>