2022-04-12 00:31:36 +08:00
|
|
|
//
|
|
|
|
// SampleHandler.swift
|
2022-08-23 02:57:25 +08:00
|
|
|
// BigBlueButton Broadcast
|
2022-04-12 00:31:36 +08:00
|
|
|
//
|
2022-08-23 02:57:25 +08:00
|
|
|
// Created by Tiago Daniel Jacobs on 22/08/22.
|
2022-04-12 00:31:36 +08:00
|
|
|
//
|
|
|
|
|
|
|
|
import ReplayKit
|
2022-08-23 02:57:25 +08:00
|
|
|
import bigbluebutton_tablet_sdk_broadcast_upload_extension
|
2022-02-16 11:16:04 +08:00
|
|
|
|
2022-08-23 02:57:25 +08:00
|
|
|
class SampleHandler:BBBSampleHandler{
|
|
|
|
override func broadcastStarted(withSetupInfo setupInfo: [String : NSObject]?) {
|
|
|
|
super.setAppGroupName(appGroupName: Constants.appGroupName)
|
|
|
|
super.broadcastStarted(withSetupInfo: setupInfo)
|
|
|
|
}
|
2022-02-16 11:16:04 +08:00
|
|
|
}
|