浏览代码

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

正在加载...
取消
保存