Info.plist.in 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  3. <plist version="1.0">
  4. <dict>
  5. <key>CFBundleDevelopmentRegion</key>
  6. <string>English</string>
  7. <!-- Executable Name -->
  8. <key>CFBundleExecutable</key>
  9. <string>${MACOSX_BUNDLE_EXECUTABLE_NAME}</string>
  10. <!-- Info for finder -->
  11. <key>CFBundleGetInfoString</key>
  12. <string>${MACOSX_BUNDLE_INFO_STRING}</string>
  13. <!-- Full screen, allow multi task or not -->
  14. <key>UIRequiresFullScreen</key>
  15. <string>${MACOSX_BUNDLE_REQUIRES_FULL_SCREEN}</string>
  16. <!-- Hide the status bar -->
  17. <key>UIStatusBarHidden</key>
  18. <${MACOSX_BUNDLE_HIDDEN_STATUS_BAR}/>
  19. <!-- If supporting multitask LaunchScreen.storyboard must be provided -->
  20. <key>UILaunchStoryboardName</key>
  21. <string>${MACOSX_BUNDLE_LAUNCHSCREEN_STORYBOARD}</string>
  22. <!-- Optionnal StoryBoard filename -->
  23. <key>UIMainStoryboardFile</key>
  24. <string>${MACOSX_BUNDLE_MAIN_STORYBOARD}</string>
  25. <!-- Name displayed -->
  26. <key>CFBundleIdentifier</key>
  27. <string>${MACOSX_BUNDLE_GUI_IDENTIFIER}</string>
  28. <key>CFBundleInfoDictionaryVersion</key>
  29. <string>6.0</string>
  30. <!-- Long version that include build number or git commit -->
  31. <key>CFBundleLongVersionString</key>
  32. <string>${MACOSX_BUNDLE_LONG_VERSION_STRING}</string>
  33. <!-- Unique bundle name across AppStore -->
  34. <key>CFBundleName</key>
  35. <string>${MACOSX_BUNDLE_BUNDLE_NAME}</string>
  36. <key>CFBundlePackageType</key>
  37. <string>APPL</string>
  38. <!-- Short Version -->
  39. <key>CFBundleShortVersionString</key>
  40. <string>${MACOSX_BUNDLE_SHORT_VERSION_STRING}</string>
  41. <key>CFBundleSignature</key>
  42. <string>????</string>
  43. <!-- Bundle Version to detect update on AppStore -->
  44. <key>CFBundleVersion</key>
  45. <string>${MACOSX_BUNDLE_BUNDLE_VERSION}</string>
  46. <key>NSLocationWhenInUseUsageDescription</key>
  47. <string>Location required</string>
  48. <!-- Peripherals -->
  49. <key>NSCameraUsageDescription</key>
  50. <string>Need to access your camera to capture a picture.</string>
  51. <key>NSPhotoLibraryUsageDescription</key>
  52. <string>Picture Library</string>
  53. <key>NSBluetoothPeripheralUsageDescription</key>
  54. <string>Bluetooth access needed to connect an external GNSS device.</string>
  55. <key>NSBluetoothAlwaysUsageDescription</key>
  56. <string>Bluetooth access needed to connect an external GNSS device.</string>
  57. <key>CSResourcesFileMapped</key>
  58. <true/>
  59. <!-- Copyright -->
  60. <key>NSHumanReadableCopyright</key>
  61. <string>${MACOSX_BUNDLE_COPYRIGHT}</string>
  62. <!-- Ui Orientation -->
  63. <key>UISupportedInterfaceOrientations</key>
  64. <array>
  65. <string>${MACOSX_BUNDLE_PORTRAIT}</string>
  66. <string>${MACOSX_BUNDLE_PORTRAITUPDOWN}</string>
  67. <string>${MACOSX_BUNDLE_LANDSCAPELEFT}</string>
  68. <string>${MACOSX_BUNDLE_LANDSCAPERIGHT}</string>
  69. </array>
  70. <key>UISupportedInterfaceOrientations~ipad</key>
  71. <array>
  72. <string>${MACOSX_BUNDLE_PORTRAIT}</string>
  73. <string>${MACOSX_BUNDLE_PORTRAITUPDOWN}</string>
  74. <string>${MACOSX_BUNDLE_LANDSCAPELEFT}</string>
  75. <string>${MACOSX_BUNDLE_LANDSCAPERIGHT}</string>
  76. </array>
  77. <key>ITSAppUsesNonExemptEncryption</key><false/>
  78. </dict>
  79. </plist>