added info.plist file for IOS

This commit is contained in:
Dorian Zedler 2020-08-20 00:25:55 +02:00
parent d6bd31e09c
commit 42512fd10a
2 changed files with 47 additions and 1 deletions

View File

@ -47,7 +47,8 @@ android {
ios {
QMAKE_IOS_DEPLOYMENT_TARGET=9.0
QMAKE_ASSET_CATALOGS += shared/graphics/Assets.xcassets
xcode_product_bundle_identifier_setting.value = "de.itsblue.scrt"
xcode_product_bundle_identifier_setting.value="de.itsblue.scrt"
QMAKE_INFO_PLIST = ios/Info.plist
}
DISTFILES += \

45
ios/Info.plist Normal file
View File

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDisplayName</key>
<string>Speed Climbing Reaction Trainer</string>
<key>CFBundleExecutable</key>
<string>SpeedClimbingReactionTrainer</string>
<key>CFBundleGetInfoString</key>
<string>Created by Qt/QMake</string>
<key>CFBundleIconFile</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>de.itsblue.scrt</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NOTE</key>
<string>This file was generated by Qt/QMake.</string>
<key>NSCameraUsageDescription</key>
<string>App would like to access the camera.</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>App would like to save images taken with camera.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>App would like to access the library.</string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
</dict>
</plist>