소스 검색

ios: make sure Fastlane can update the provisioning profile

https://docs.fastlane.tools/codesigning/xcode-project/#xcode-9-and-up
master
Saúl Ibarra Corretgé 6 년 전
부모
커밋
659e420005
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5
    1
      ios/fastlane/Fastfile

+ 5
- 1
ios/fastlane/Fastfile 파일 보기

@@ -23,7 +23,11 @@ platform :ios do
23 23
     )
24 24
 
25 25
     # Actually build the app
26
-    build_app(scheme: "jitsi-meet", include_bitcode: false)
26
+    build_app(
27
+        scheme: "jitsi-meet",
28
+        include_bitcode: false,
29
+        export_xcargs: "-allowProvisioningUpdates"
30
+    )
27 31
 
28 32
     # Upload the build to TestFlight (but don't distribute it)
29 33
     upload_to_testflight(skip_submission: true, skip_waiting_for_build_processing: true)

Loading…
취소
저장