Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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