Dont keep the fake runner around as it fails validation when preparing release archives

This commit is contained in:
Chinmay Garde 2016-02-04 12:43:24 -08:00
parent 5a7907d351
commit b815431cde
2 changed files with 7 additions and 7 deletions

View File

@ -236,7 +236,7 @@
9E07CF971BE8280A00BCD8DE /* Frameworks */,
9E07CF981BE8280A00BCD8DE /* Resources */,
9E07CFB91BE82D2600BCD8DE /* Embed Frameworks */,
9E40465C1C1B6DEC00A4B87C /* Copy Flutter Runner Executable And Resources */,
9E40465C1C1B6DEC00A4B87C /* Replace Fake Runner with Actual Flutter Runner */,
);
buildRules = (
);
@ -336,19 +336,19 @@
shellScript = "${SOURCE_ROOT}/Tools/common/PackagerInvoke ${FLUTTER_APPLICATION_PATH}";
showEnvVarsInLog = 0;
};
9E40465C1C1B6DEC00A4B87C /* Copy Flutter Runner Executable And Resources */ = {
9E40465C1C1B6DEC00A4B87C /* Replace Fake Runner with Actual Flutter Runner */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "Copy Flutter Runner Executable And Resources";
name = "Replace Fake Runner with Actual Flutter Runner";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "cp ${FLUTTER_ARCH_TOOLS_PATH}/FlutterRunner ${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/FlutterRunner";
shellScript = "rm ${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Runner; cp ${FLUTTER_ARCH_TOOLS_PATH}/FlutterRunner ${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Runner";
showEnvVarsInLog = 0;
};
9EBB2F351BF675C200177634 /* Ensure `pub get` */ = {

View File

@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>FlutterRunner</string>
<string>Runner</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
@ -22,8 +22,6 @@
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
@ -43,5 +41,7 @@
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>