# Copy the framework structure (from iphoneos build) to the universal foldercp -R"${BUILD_DIR}/${CONFIGURATION}-iphoneos/${FRAMEWORK_NAME}.framework""${UNIVERSAL_OUTPUTFOLDER}/"# Create universal binary file using lipo and place the combined executable in the copied framework directorylipo -create-output"${UNIVERSAL_OUTPUTFOLDER}/${FRAMEWORK_NAME}.framework/${FRAMEWORK_NAME}""${BUILD_DIR}/${CONFIGURATION}-iphonesimulator/${FRAMEWORK_NAME}.framework/${FRAMEWORK_NAME}""${BUILD_DIR}/${CONFIGURATION}-iphoneos/${FRAMEWORK_NAME}.framework/${FRAMEWORK_NAME}"# Copy the framework to the sample apps folder