From 78fd7a736412171d3df13806a3de4c3c2f5a5ca5 Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Tue, 1 Oct 2019 09:30:35 +0100 Subject: [PATCH] Projucer: Fixed a Launch Images Source issue in Xcode 11 --- .../Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h index eb6e769dc3..c0767e1d1e 100644 --- a/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h +++ b/extras/Projucer/Source/ProjectSaving/jucer_ProjectExport_Xcode.h @@ -1308,7 +1308,9 @@ public: if (owner.iOS) { s.set ("ASSETCATALOG_COMPILER_APPICON_NAME", "AppIcon"); - s.set ("ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME", "LaunchImage"); + + if (! owner.shouldAddStoryboardToProject()) + s.set ("ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME", "LaunchImage"); } else {