浏览代码

ios: strip bitcode when releasing the SDK

master
Saúl Ibarra Corretgé 6 年前
父节点
当前提交
1c809eb428
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4
    0
      ios/scripts/release-sdk.sh

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

@@ -34,6 +34,10 @@ pushd ${RELEASE_REPO}
34 34
 cp -r ${PROJECT_REPO}/ios/sdk/JitsiMeet.framework Frameworks/
35 35
 cp -r ${PROJECT_REPO}/node_modules/react-native-webrtc/ios/WebRTC.framework Frameworks/
36 36
 
37
+# Strip bitcode
38
+xcrun bitcode_strip -r Frameworks/JitsiMeet.framework/JitsiMeet -o Frameworks/JitsiMeet.framework/JitsiMeet
39
+xcrun bitcode_strip -r Frameworks/WebRTC.framework/WebRTC -o Frameworks/WebRTC.framework/WebRTC
40
+
37 41
 # Add all files to git
38 42
 git add -A .
39 43
 git commit -m "${SDK_VERSION}"

正在加载...
取消
保存