Created
August 16, 2019 10:01
-
-
Save Rickyip/a30fae4d2c9801880385aa8efc1d74c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
if [ -z "$XCODE_VERSION_CORRECT" ] | |
then | |
export SUDO_ASKPASS="${PROJECT_DIR}/../scripts/askpass.sh" | |
fi | |
UNIVERSAL_OUTPUTFOLDER=${BUILD_DIR}/${CONFIGURATION}-universal | |
# make sure the output directory exists | |
mkdir -p "${UNIVERSAL_OUTPUTFOLDER}" | |
# Step 1. Build Device and Simulator versions | |
# add BITCODE_GENERATION_MODE=bitcode to support bitcode | |
echo "Building for devices" | |
xcodebuild -target "${PROJECT_NAME}" -configuration ${CONFIGURATION} -sdk iphoneos ONLY_ACTIVE_ARCH=NO BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}" clean build | |
# add BITCODE_GENERATION_MODE=marker to support bitcode | |
echo "Building for simulators" | |
xcodebuild -target "${PROJECT_NAME}" -configuration ${CONFIGURATION} -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}" clean build | |
# Step 2. Copy the framework structure (from iphoneos build) to the universal folder | |
echo "Copying framework structure" | |
cp -R "${BUILD_DIR}/${CONFIGURATION}-iphoneos/${PROJECT_NAME}.framework" "${UNIVERSAL_OUTPUTFOLDER}/" | |
# Step 3. Copy Swift modules from iphonesimulator build (if it exists) to the copied framework directory | |
echo "Copying simulator Swift modules" | |
SIMULATOR_SWIFT_MODULES_DIR="${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${PROJECT_NAME}.framework/Modules/${PROJECT_NAME}.swiftmodule/." | |
if [ -d "${SIMULATOR_SWIFT_MODULES_DIR}" ]; then | |
cp -R "${SIMULATOR_SWIFT_MODULES_DIR}" "${UNIVERSAL_OUTPUTFOLDER}/${PROJECT_NAME}.framework/Modules/${PROJECT_NAME}.swiftmodule" | |
fi | |
# Step 4. Create new combined simulator and device swift header file | |
COMBINED_PATH="${BUILD_DIR}/iOS + iOS Simulator/${PROJECT_NAME}-Swift.h" | |
# If remnants from a previous build exist, delete them. | |
if [ -d "${BUILD_DIR}/iOS + iOS Simulator/" ]; then | |
rm -rf "${BUILD_DIR}/iOS + iOS Simulator/" | |
fi | |
mkdir -p "${BUILD_DIR}/iOS + iOS Simulator/" | |
touch "${COMBINED_PATH}" | |
echo "#if TARGET_OS_SIMULATOR" >> "${COMBINED_PATH}" | |
cat "${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${PROJECT_NAME}.framework/Headers/${PROJECT_NAME}-Swift.h" >> "${COMBINED_PATH}" | |
echo "#else" >> "${COMBINED_PATH}" | |
echo "//Start of iphoneos" >> "${COMBINED_PATH}" | |
cat "${BUILD_DIR}/${CONFIGURATION}-iphoneos/${PROJECT_NAME}.framework/Headers/${PROJECT_NAME}-Swift.h" >> "${COMBINED_PATH}" | |
echo "#endif" >> "${COMBINED_PATH}" | |
# Step 5. Create universal binary file using lipo and place the combined executable in the copied framework directory | |
echo "Creating universal binary using lipo" | |
lipo -create -output "${UNIVERSAL_OUTPUTFOLDER}/${PROJECT_NAME}.framework/${PROJECT_NAME}" "${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${PROJECT_NAME}.framework/${PROJECT_NAME}" "${BUILD_DIR}/${CONFIGURATION}-iphoneos/${PROJECT_NAME}.framework/${PROJECT_NAME}" | |
# Step 6. Overwrite generated -Swift.h file with combined -Swift.h file -- Kknown Issue with XCode 10.2 https://developer.apple.com/documentation/xcode_release_notes/xcode_10_2_release_notes#3141454 | |
cat "$COMBINED_PATH" > "${UNIVERSAL_OUTPUTFOLDER}/${PROJECT_NAME}.framework/Headers/${PROJECT_NAME}-Swift.h" | |
# Step 7. Convenience step to copy the framework to the project's directory | |
OUTPUT_DIR="${PROJECT_DIR}/Output/${PROJECT_NAME}-${CONFIGURATION}-iphoneuniversal/" | |
rm -rf "$OUTPUT_DIR" | |
mkdir -p "$OUTPUT_DIR" | |
cp -R "${UNIVERSAL_OUTPUTFOLDER}/${PROJECT_NAME}.framework" "$OUTPUT_DIR" | |
# Step 8. Convenience step to open the project's directory in Finder | |
open "$OUTPUT_DIR" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment