Browse Source

fix(ios,build) make sure the correct broadcast extension ID is set

j8
Saúl Ibarra Corretgé 4 years ago
parent
commit
e40e078a29
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      ios/fastlane/Fastfile

+ 7
- 0
ios/fastlane/Fastfile View File

22
       plist_path: "broadcast-extension/Info.plist",
22
       plist_path: "broadcast-extension/Info.plist",
23
       app_identifier: "com.atlassian.JitsiMeet.ios.broadcast"
23
       app_identifier: "com.atlassian.JitsiMeet.ios.broadcast"
24
     )
24
     )
25
+    update_info_plist(
26
+      xcodeproj: "app/app.xcodeproj",
27
+      plist_path: "src/Info.plist",
28
+      block: proc do |plist|
29
+        plist["RTCScreenSharingExtension"] = "com.atlassian.JitsiMeet.ios.broadcast"
30
+      end
31
+    )
25
 
32
 
26
     # Set the (watch) app identifier
33
     # Set the (watch) app identifier
27
     update_app_identifier(
34
     update_app_identifier(

Loading…
Cancel
Save