Browse Source

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 years ago
parent
commit
659e420005
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      ios/fastlane/Fastfile

+ 5
- 1
ios/fastlane/Fastfile View File

@@ -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…
Cancel
Save