Multiple Targets in Xcode: "Failed to launch simulated application: Unknown error." - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T09:34:44Zhttp://stackoverflow.com/feeds/question/717453http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/717453/multiple-targets-in-xcode-failed-to-launch-simulated-application-unknown-error0Multiple Targets in Xcode: "Failed to launch simulated application: Unknown error."pix0r2009-04-04T17:28:09Z2009-07-30T02:57:24Z
<p>I'm trying to build for multiple targets in Xcode, to simplify the process of creating a "lite" and "pro" version of my application. In theory, this is great and I can pass defines to <code>GCC_PREPROCESSOR_DEFINITIONS</code> for use in my code. However, I'm having problems actually getting it to work due to an error trying to launch the second target in the simulator: <code>Failed to launch simulated application: Unknown error.</code></p>
<p>Here is the simple process I'm using to create the additional target:</p>
<ol>
<li>Add #ifdef MYAPP_PRO to source files to modify behavior based on pro/lite version of app (and verify application is working as expected)</li>
<li>Select <code>Project</code> > <code>New Target...</code> from menu, and pick "Cocoa Touch Application" (named MyAppPro")</li>
<li>Edit new target settings; add <code>GCC_PREPROCESSOR_DEFINITIONS</code> user-defined setting and set the value to "MYAPP_PRO" (no quotes)</li>
<li>Set active target to "MyAppPro"; build and run.</li>
<li><code>Failed to launch simulated application: Unknown error.</code></li>
<li>Copy all settings from Info.plist to MyAppPro-Info.plist and try again</li>
<li><code>Failed to launch simulated application: Unknown error.</code></li>
</ol>
<p>The build completes just fine, but I'm unable to run in simulator.</p>
<p>Editing the project.pbxproj in the .xcodeproj directory, I notice there are some key differences between the two target definitions' build settings. I tried manually editing the file but must have done something wrong because I couldn't get it to load in Xcode afterwards.</p>
<p>Original target's "Debug" build settings:</p>
<pre><code> buildSettings = {
ALWAYS_SEARCH_USER_PATHS = YES;
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
GCC_C_LANGUAGE_STANDARD = c99;
GCC_WARN_ABOUT_RETURN_TYPE = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
ONLY_ACTIVE_ARCH = YES;
PREBINDING = NO;
SDKROOT = iphoneos2.2.1;
};
</code></pre>
<p>Thew new MyAppPro target's "Debug" build settings:</p>
<pre><code> buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CODE_SIGN_IDENTITY = "iPhone Developer";
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "$(SYSTEM_LIBRARY_DIR)/Frameworks/UIKit.framework/Headers/UIKit.h";
INFOPLIST_FILE = "MyAppPro-Info.plist";
INSTALL_PATH = "$(HOME)/Applications";
OTHER_LDFLAGS = (
"-framework",
Foundation,
"-framework",
UIKit,
);
PREBINDING = NO;
PRODUCT_NAME = MyAppPro;
SDKROOT = iphoneos2.2.1;
};
</code></pre>
http://stackoverflow.com/questions/717453/multiple-targets-in-xcode-failed-to-launch-simulated-application-unknown-error/718161#7181613Answer by cdespinosa for Multiple Targets in Xcode: "Failed to launch simulated application: Unknown error."cdespinosa2009-04-05T01:07:46Z2009-04-05T01:07:46Z<p>You didn't say whether you actually ever added source files to the target. A new target (unlike a new project) has no source file templates; you have to add them yourself. So the Simulator might be telling you "you built successfully, but there's nothing to run."</p>
http://stackoverflow.com/questions/717453/multiple-targets-in-xcode-failed-to-launch-simulated-application-unknown-error/1204211#12042110Answer by Jorge for Multiple Targets in Xcode: "Failed to launch simulated application: Unknown error."Jorge2009-07-30T02:57:24Z2009-07-30T02:57:24Z<p>How did you managed to get this working exactly? Thanks.</p>