Skip to main content

Deploy your app

The SDK is a universal framework, when deploying your app a post build script should execute to remove unused architectures.

  1. Open your Xcode project.

  2. In the Project navigator, select a project.

  3. Select a target in the left column of the project editor. If this column isn't visible, click Show project and target list icon or choose a target from the pop-up menu at the top of the project editor.

  4. Click Build Phases at the top of the project editor.

  5. Click the (+) button, select New Run Script Phase.
    Ensure Run Script is last phase in the list of build phases.

  6. Paste the following script into the empty text field provided.

APP_PATH="${TARGET_BUILD_DIR}/${WRAPPER_NAME}"
    
find "$APP_PATH" -name '*.framework' -type d | while read -r FRAMEWORK
do
FRAMEWORK_EXECUTABLE_NAME=$(defaults read "$FRAMEWORK/Info.plist" CFBundleExecutable)
FRAMEWORK_EXECUTABLE_PATH="$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME"
echo "Executable is $FRAMEWORK_EXECUTABLE_PATH"

EXTRACTED_ARCHS=()

for ARCH in $ARCHS
do
echo "Extracting $ARCH from $FRAMEWORK_EXECUTABLE_NAME"
lipo -extract "$ARCH" "$FRAMEWORK_EXECUTABLE_PATH" -o "$FRAMEWORK_EXECUTABLE_PATH-$ARCH"
EXTRACTED_ARCHS+=("$FRAMEWORK_EXECUTABLE_PATH-$ARCH")
done

echo "Merging extracted architectures: ${ARCHS}"
lipo -o "$FRAMEWORK_EXECUTABLE_PATH-merged" -create "${EXTRACTED_ARCHS[@]}"
rm "${EXTRACTED_ARCHS[@]}"

echo "Replacing original executable with thinned version"
rm "$FRAMEWORK_EXECUTABLE_PATH"
mv "$FRAMEWORK_EXECUTABLE_PATH-merged" "$FRAMEWORK_EXECUTABLE_PATH"

done

Carthage frameworks

If your project is using Carthage frameworks, ensure the carthage copy-frameworks build phase in present. Visit Carthage for more information.