Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

bitcode.sh 446B

123456789101112131415
  1. #!/bin/bash
  2. # This script will download a bitcode build of the WebRTC framework, if needed.
  3. if [[ ! "$CONFIGURATION" = "Debug" ]]; then
  4. RN_WEBRTC="$SRCROOT/../../node_modules/react-native-webrtc"
  5. if otool -arch arm64 -l $RN_WEBRTC/ios/WebRTC.framework/WebRTC | grep -q LLVM; then
  6. echo "WebRTC framework has bitcode"
  7. else
  8. echo "WebRTC framework has NO bitcode"
  9. $RN_WEBRTC/tools/downloadBitcode.sh
  10. fi
  11. fi