| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
- <plist version="1.0">
- <dict>
- <key>CFBundleDevelopmentRegion</key>
- <string>English</string>
- <!-- Executable Name -->
- <key>CFBundleExecutable</key>
- <string>${MACOSX_BUNDLE_EXECUTABLE_NAME}</string>
- <!-- Info for finder -->
- <key>CFBundleGetInfoString</key>
- <string>${MACOSX_BUNDLE_INFO_STRING}</string>
- <!-- Full screen, allow multi task or not -->
- <key>UIRequiresFullScreen</key>
- <string>${MACOSX_BUNDLE_REQUIRES_FULL_SCREEN}</string>
- <!-- Hide the status bar -->
- <key>UIStatusBarHidden</key>
- <${MACOSX_BUNDLE_HIDDEN_STATUS_BAR}/>
- <!-- If supporting multitask LaunchScreen.storyboard must be provided -->
- <key>UILaunchStoryboardName</key>
- <string>${MACOSX_BUNDLE_LAUNCHSCREEN_STORYBOARD}</string>
- <!-- Optionnal StoryBoard filename -->
- <key>UIMainStoryboardFile</key>
- <string>${MACOSX_BUNDLE_MAIN_STORYBOARD}</string>
- <!-- Name displayed -->
- <key>CFBundleIdentifier</key>
- <string>${MACOSX_BUNDLE_GUI_IDENTIFIER}</string>
- <key>CFBundleInfoDictionaryVersion</key>
- <string>6.0</string>
- <!-- Long version that include build number or git commit -->
- <key>CFBundleLongVersionString</key>
- <string>${MACOSX_BUNDLE_LONG_VERSION_STRING}</string>
- <!-- Unique bundle name across AppStore -->
- <key>CFBundleName</key>
- <string>${MACOSX_BUNDLE_BUNDLE_NAME}</string>
- <key>CFBundlePackageType</key>
- <string>APPL</string>
- <!-- Short Version -->
- <key>CFBundleShortVersionString</key>
- <string>${MACOSX_BUNDLE_SHORT_VERSION_STRING}</string>
- <key>CFBundleSignature</key>
- <string>????</string>
- <!-- Bundle Version to detect update on AppStore -->
- <key>CFBundleVersion</key>
- <string>${MACOSX_BUNDLE_BUNDLE_VERSION}</string>
- <key>NSLocationWhenInUseUsageDescription</key>
- <string>Location required</string>
- <!-- Peripherals -->
- <key>NSCameraUsageDescription</key>
- <string>Need to access your camera to capture a picture.</string>
- <key>NSPhotoLibraryUsageDescription</key>
- <string>Picture Library</string>
- <key>NSBluetoothPeripheralUsageDescription</key>
- <string>Bluetooth access needed to connect an external GNSS device.</string>
- <key>NSBluetoothAlwaysUsageDescription</key>
- <string>Bluetooth access needed to connect an external GNSS device.</string>
- <key>CSResourcesFileMapped</key>
- <true/>
- <!-- Copyright -->
- <key>NSHumanReadableCopyright</key>
- <string>${MACOSX_BUNDLE_COPYRIGHT}</string>
- <!-- Ui Orientation -->
- <key>UISupportedInterfaceOrientations</key>
- <array>
- <string>${MACOSX_BUNDLE_PORTRAIT}</string>
- <string>${MACOSX_BUNDLE_PORTRAITUPDOWN}</string>
- <string>${MACOSX_BUNDLE_LANDSCAPELEFT}</string>
- <string>${MACOSX_BUNDLE_LANDSCAPERIGHT}</string>
- </array>
- <key>UISupportedInterfaceOrientations~ipad</key>
- <array>
- <string>${MACOSX_BUNDLE_PORTRAIT}</string>
- <string>${MACOSX_BUNDLE_PORTRAITUPDOWN}</string>
- <string>${MACOSX_BUNDLE_LANDSCAPELEFT}</string>
- <string>${MACOSX_BUNDLE_LANDSCAPERIGHT}</string>
- </array>
- <key>ITSAppUsesNonExemptEncryption</key><false/>
- </dict>
- </plist>
|