Przeglądaj źródła

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é 6 lat temu
rodzic
commit
5d40a8992a
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1
    1
      ios/scripts/release-sdk.sh

+ 1
- 1
ios/scripts/release-sdk.sh Wyświetl plik

25
 # Build the SDK
25
 # Build the SDK
26
 pushd ${PROJECT_REPO}
26
 pushd ${PROJECT_REPO}
27
 rm -rf ios/sdk/JitsiMeet.framework
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
 if [[ $DO_GIT_TAG == 1 ]]; then
29
 if [[ $DO_GIT_TAG == 1 ]]; then
30
     git tag ios-sdk-${SDK_VERSION}
30
     git tag ios-sdk-${SDK_VERSION}
31
 fi
31
 fi

Ładowanie…
Anuluj
Zapisz