From 5d40a8992a8a8559a7cfa9f3439cc6d154bf3698 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Wed, 13 Nov 2019 13:11:38 +0100 Subject: [PATCH] ios: disable bitcode when building the SDK for a release This makes it possible to compile the SDK with Xcode 10 and 11. The problem is that the Google SDK (used for sign-in) is compiled with Xcode 11. This avoids the issue. --- ios/scripts/release-sdk.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/scripts/release-sdk.sh b/ios/scripts/release-sdk.sh index 2a89b3077..c1285fce6 100755 --- a/ios/scripts/release-sdk.sh +++ b/ios/scripts/release-sdk.sh @@ -25,7 +25,7 @@ popd # Build the SDK pushd ${PROJECT_REPO} rm -rf ios/sdk/JitsiMeet.framework -xcodebuild -workspace ios/jitsi-meet.xcworkspace -scheme JitsiMeet -destination='generic/platform=iOS' -configuration Release archive +xcodebuild -workspace ios/jitsi-meet.xcworkspace -scheme JitsiMeet -destination='generic/platform=iOS' -configuration Release ENABLE_BITCODE=NO clean archive if [[ $DO_GIT_TAG == 1 ]]; then git tag ios-sdk-${SDK_VERSION} fi