anas shah
anas shah

Reputation: 41

Live Broadcasting React-Native Sdk not found

I am developing app on react native for video calling and live broadcasting. I have found react-native sdk for video calling but unfortunately i did not find any react-native sdk for live broadcasting. Is there any react-native sdk for live broadcasting of Agora? If any one can help me regarding this, i would be very thankful.

Upvotes: 0

Views: 198

Answers (1)

vineeth srini
vineeth srini

Reputation: 464

You can perform live broadcasting by using the video calling SDK itself.

You can set the role of a user as "broadcaster" or "audience" using the setClientRole method.

e.g RTCEngine.setClientRole(0); (audience: 0, host: 1)

https://agora-rn-uikit.netlify.com/docs/api/classes/_rtcengine_native_.rtcengine#static-setclientrole

Upvotes: 1

Related Questions