From 97938c5e8fb1500f2f115921bbc726ca9786494e Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Tue, 24 Sep 2019 09:54:57 +0200 Subject: [PATCH] Build for iPhone 11 simulator instead of iPhone 6 iPhone 6 simulator is no longer present in Xcode 11.0. --- wrappers/ios/libindy-pod/universal_framework.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrappers/ios/libindy-pod/universal_framework.sh b/wrappers/ios/libindy-pod/universal_framework.sh index 3216da74b6..9a8486ca04 100755 --- a/wrappers/ios/libindy-pod/universal_framework.sh +++ b/wrappers/ios/libindy-pod/universal_framework.sh @@ -72,7 +72,7 @@ else export ALREADYINVOKED="true" echo "Step 1. Building for iPhoneSimulator" -xcodebuild -workspace "${WORKSPACE_PATH}" -scheme "${SCHEME_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 +xcodebuild -workspace "${WORKSPACE_PATH}" -scheme "${SCHEME_NAME}" -configuration ${CONFIGURATION} -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 11' 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 if [ "$?" != "0" ] then echo "[ERROR]: FAILED Step 1: Building for iPhoneSimulator";