summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandru Croitor <alexandru.croitor@qt.io>2022-04-04 17:57:58 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-04-05 12:01:08 +0000
commit3b5d8ef6f066ecf3840f70024c735aba3bfb2a79 (patch)
treea4d715d04fe71dc412adb80dbc9f9746c16362b5
parent5b8d6dfccdab9e06db0342e97852a245bb4a8c05 (diff)
downloadqtsensors-6.2.tar.gz
iOS: Add missing Info.plist for maze example6.2
Previously configuring the example failed with CMake Error: Target maze Info.plist template "qtsensors/examples/sensors/maze/Info.plist" could not be found. Amends a798ef4e3d3bf93be82bfc0ad5d2ca2af0dcd2d5 Task-number: QTBUG-102256 Change-Id: I855d6db47bd1daaea45c5124e96c5c32121b971c Reviewed-by: Juha Vuolle <juha.vuolle@insta.fi> (cherry picked from commit d8e068e2ac13c9d090f42539c2e6d080d0a22a42) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--examples/sensors/maze/Info.plist32
1 files changed, 32 insertions, 0 deletions
diff --git a/examples/sensors/maze/Info.plist b/examples/sensors/maze/Info.plist
new file mode 100644
index 0000000..2458247
--- /dev/null
+++ b/examples/sensors/maze/Info.plist
@@ -0,0 +1,32 @@
+<?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>maze</string>
+ <key>CFBundleExecutable</key>
+ <string>maze</string>
+ <key>CFBundleGetInfoString</key>
+ <string>Created by Qt/QMake</string>
+ <key>CFBundleIdentifier</key>
+ <string>com.qt.sensorsmaze</string>
+ <key>CFBundleName</key>
+ <string>maze</string>
+ <key>CFBundlePackageType</key>
+ <string>APPL</string>
+ <key>CFBundleShortVersionString</key>
+ <string>1.0</string>
+ <key>CFBundleSignature</key>
+ <string>????</string>
+ <key>CFBundleVersion</key>
+ <string>1.0</string>
+ <key>LSRequiresIPhoneOS</key>
+ <true/>
+ <key>UILaunchStoryboardName</key>
+ <string>LaunchScreen</string>
+ <key>UISupportedInterfaceOrientations</key>
+ <array>
+ <string>UIInterfaceOrientationPortrait</string>
+ </array>
+</dict>
+</plist>