浏览代码

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

j8
Saúl Ibarra Corretgé 4 年前
父节点
当前提交
e40e078a29
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. 7
    0
      ios/fastlane/Fastfile

+ 7
- 0
ios/fastlane/Fastfile 查看文件

@@ -22,6 +22,13 @@ platform :ios do
22 22
       plist_path: "broadcast-extension/Info.plist",
23 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 33
     # Set the (watch) app identifier
27 34
     update_app_identifier(

正在加载...
取消
保存