Parcourir la 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é il y a 6 ans
Parent
révision
659e420005
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 5
    1
      ios/fastlane/Fastfile

+ 5
- 1
ios/fastlane/Fastfile Voir le fichier

@@ -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)

Chargement…
Annuler
Enregistrer