瀏覽代碼

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.
master
Saúl Ibarra Corretgé 5 年之前
父節點
當前提交
5d40a8992a
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      ios/scripts/release-sdk.sh

+ 1
- 1
ios/scripts/release-sdk.sh 查看文件

@@ -25,7 +25,7 @@ popd
25 25
 # Build the SDK
26 26
 pushd ${PROJECT_REPO}
27 27
 rm -rf ios/sdk/JitsiMeet.framework
28
-xcodebuild -workspace ios/jitsi-meet.xcworkspace -scheme JitsiMeet -destination='generic/platform=iOS' -configuration Release archive
28
+xcodebuild -workspace ios/jitsi-meet.xcworkspace -scheme JitsiMeet -destination='generic/platform=iOS' -configuration Release ENABLE_BITCODE=NO clean archive
29 29
 if [[ $DO_GIT_TAG == 1 ]]; then
30 30
     git tag ios-sdk-${SDK_VERSION}
31 31
 fi

Loading…
取消
儲存