summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Gaist <samuel.gaist@edeltech.ch>2015-08-06 09:49:14 +0200
committerSamuel Gaist <samuel.gaist@edeltech.ch>2015-08-06 20:49:58 +0000
commit0a9133aedd6f911a07b7020420a9addf9c31c9f3 (patch)
tree23a4a001d13d72bea81e667a22ea2cbaca83c663
parentd485a703962d631a2798757d3460bf6d6db51300 (diff)
downloadqtdoc-0a9133aedd6f911a07b7020420a9addf9c31c9f3.tar.gz
iOS: Fix launch image code sample and explanation
Task-number: QTBUG-47592 Change-Id: I6d6252fb38662277869af0be9662df92ea533c2b Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com> Reviewed-by: Topi Reiniƶ <topi.reinio@digia.com>
-rw-r--r--doc/src/platforms/ios.qdoc5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/platforms/ios.qdoc b/doc/src/platforms/ios.qdoc
index 3746ae3b..4cbcc431 100644
--- a/doc/src/platforms/ios.qdoc
+++ b/doc/src/platforms/ios.qdoc
@@ -545,12 +545,13 @@
like the following code snippet to the .pro file:
\badcode
ios {
- launch_images.files = $$PWD/ios/Launch.xib $$files($$PWD/ios/LaunchImage*.png)
- QMAKE_BUNDLE_DATA += launch_images
+ app_launch_images.files = $$PWD/ios/Launch.xib $$files($$PWD/ios/LaunchImage*.png)
+ QMAKE_BUNDLE_DATA += app_launch_images
}
\endcode
This allows you to produce universal applications with valid LaunchImages as required by the Apple App Store.
+ \important \c "launch_images" is used internally by Qt, so it will be overwritten if used in your .pro file.
\section1 Publishing to Apple App Store