소스 검색

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

master
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(

Loading…
취소
저장