| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 | 
							- <?xml version="1.0" encoding="UTF-8"?>
 - <Scheme
 -    LastUpgradeVersion = "1020"
 -    version = "1.7">
 -    <BuildAction
 -       parallelizeBuildables = "YES"
 -       buildImplicitDependencies = "YES">
 -       <BuildActionEntries>
 -          <BuildActionEntry
 -             buildForTesting = "YES"
 -             buildForRunning = "YES"
 -             buildForProfiling = "YES"
 -             buildForArchiving = "YES"
 -             buildForAnalyzing = "YES">
 -             <BuildableReference
 -                BuildableIdentifier = "primary"
 -                BlueprintIdentifier = "0BD906E41EC0C00300C8C18E"
 -                BuildableName = "JitsiMeet.framework"
 -                BlueprintName = "JitsiMeet"
 -                ReferencedContainer = "container:sdk.xcodeproj">
 -             </BuildableReference>
 -          </BuildActionEntry>
 -       </BuildActionEntries>
 -    </BuildAction>
 -    <TestAction
 -       buildConfiguration = "Debug"
 -       selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
 -       selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
 -       shouldUseLaunchSchemeArgsEnv = "YES">
 -       <Testables>
 -       </Testables>
 -       <AdditionalOptions>
 -       </AdditionalOptions>
 -    </TestAction>
 -    <LaunchAction
 -       buildConfiguration = "Debug"
 -       selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
 -       selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
 -       launchStyle = "0"
 -       useCustomWorkingDirectory = "NO"
 -       ignoresPersistentStateOnLaunch = "NO"
 -       debugDocumentVersioning = "YES"
 -       debugServiceExtension = "internal"
 -       allowLocationSimulation = "YES">
 -       <MacroExpansion>
 -          <BuildableReference
 -             BuildableIdentifier = "primary"
 -             BlueprintIdentifier = "0BD906E41EC0C00300C8C18E"
 -             BuildableName = "JitsiMeet.framework"
 -             BlueprintName = "JitsiMeet"
 -             ReferencedContainer = "container:sdk.xcodeproj">
 -          </BuildableReference>
 -       </MacroExpansion>
 -       <AdditionalOptions>
 -       </AdditionalOptions>
 -    </LaunchAction>
 -    <ProfileAction
 -       buildConfiguration = "Release"
 -       shouldUseLaunchSchemeArgsEnv = "YES"
 -       savedToolIdentifier = ""
 -       useCustomWorkingDirectory = "NO"
 -       debugDocumentVersioning = "YES">
 -       <MacroExpansion>
 -          <BuildableReference
 -             BuildableIdentifier = "primary"
 -             BlueprintIdentifier = "0BD906E41EC0C00300C8C18E"
 -             BuildableName = "JitsiMeet.framework"
 -             BlueprintName = "JitsiMeet"
 -             ReferencedContainer = "container:sdk.xcodeproj">
 -          </BuildableReference>
 -       </MacroExpansion>
 -    </ProfileAction>
 -    <AnalyzeAction
 -       buildConfiguration = "Debug">
 -    </AnalyzeAction>
 -    <ArchiveAction
 -       buildConfiguration = "Release"
 -       revealArchiveInOrganizer = "YES">
 -       <PostActions>
 -          <ExecutionAction
 -             ActionType = "Xcode.IDEStandardExecutionActionsCore.ExecutionActionType.ShellScriptAction">
 -             <ActionContent
 -                title = "Run Script"
 -                scriptText = "exec > /tmp/${PROJECT_NAME}_archive.log 2>&1

UNIVERSAL_OUTPUTFOLDER=${BUILD_DIR}/${CONFIGURATION}-universal

if [ "true" == ${ALREADYINVOKED:-false} ]
then
echo "RECURSION: Detected, stopping"
else
export ALREADYINVOKED="true"

# make sure the output directory exists
mkdir -p "${UNIVERSAL_OUTPUTFOLDER}"

echo "Building for iPhoneSimulator"
xcodebuild -workspace "${WORKSPACE_PATH}" -scheme "${TARGET_NAME}" -configuration ${CONFIGURATION} -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6' ONLY_ACTIVE_ARCH=NO ARCHS='i386 x86_64' BUILD_DIR="${BUILD_DIR}" BUILD_ROOT="${BUILD_ROOT}" ENABLE_BITCODE=YES OTHER_CFLAGS="-fembed-bitcode" BITCODE_GENERATION_MODE=bitcode clean build

# Step 1. Copy the framework structure (from iphoneos build) to the universal folder
echo "Copying to output folder"
cp -R "${BUILD_DIR}/${CONFIGURATION}-iphoneos/${FULL_PRODUCT_NAME}" "${UNIVERSAL_OUTPUTFOLDER}/"

# Step 2. Copy Swift modules from iphonesimulator build (if it exists) to the copied framework directory
SIMULATOR_SWIFT_MODULES_DIR="${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${TARGET_NAME}.framework/Modules/${TARGET_NAME}.swiftmodule/."
if [ -d "${SIMULATOR_SWIFT_MODULES_DIR}" ]; then
cp -R "${SIMULATOR_SWIFT_MODULES_DIR}" "${UNIVERSAL_OUTPUTFOLDER}/${TARGET_NAME}.framework/Modules/${TARGET_NAME}.swiftmodule"
fi

# Step 3. Create universal binary file using lipo and place the combined executable in the copied framework directory
echo "Combining executables"
lipo -create -output "${UNIVERSAL_OUTPUTFOLDER}/${EXECUTABLE_PATH}" "${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${EXECUTABLE_PATH}" "${BUILD_DIR}/${CONFIGURATION}-iphoneos/${EXECUTABLE_PATH}"

# Step 4. Create universal binaries for embedded frameworks
#for SUB_FRAMEWORK in $( ls "${UNIVERSAL_OUTPUTFOLDER}/${TARGET_NAME}.framework/Frameworks" ); do
#BINARY_NAME="${SUB_FRAMEWORK%.*}"
#lipo -create -output "${UNIVERSAL_OUTPUTFOLDER}/${TARGET_NAME}.framework/Frameworks/${SUB_FRAMEWORK}/${BINARY_NAME}" "${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${SUB_FRAMEWORK}/${BINARY_NAME}" "${ARCHIVE_PRODUCTS_PATH}${INSTALL_PATH}/${TARGET_NAME}.framework/Frameworks/${SUB_FRAMEWORK}/${BINARY_NAME}"
#done

# Step 5. Convenience step to copy the framework to the project's directory
echo "Copying to project dir"
yes | cp -Rf "${UNIVERSAL_OUTPUTFOLDER}/${FULL_PRODUCT_NAME}" "${PROJECT_DIR}"

fi">
 -                <EnvironmentBuildable>
 -                   <BuildableReference
 -                      BuildableIdentifier = "primary"
 -                      BlueprintIdentifier = "0BD906E41EC0C00300C8C18E"
 -                      BuildableName = "JitsiMeet.framework"
 -                      BlueprintName = "JitsiMeet"
 -                      ReferencedContainer = "container:sdk.xcodeproj">
 -                   </BuildableReference>
 -                </EnvironmentBuildable>
 -             </ActionContent>
 -          </ExecutionAction>
 -       </PostActions>
 -    </ArchiveAction>
 - </Scheme>
 
 
  |