Hi. I'm using iOS SDK 2.5.2
Even though it's
I tried to apply the stream
I want the microphone permissions dialog to appear only using
Is there a way around it?
Code:
// It is written in NativeScript(TypeScript), but it doesn't affect the nature of the problem.
FPWCSApi2.createSessionError(sessionOptions)
.onCallback(kFPWCSSessionStatus.Established, (session): void => {
session.createStreamError(streamOptions).play();
})
.connect();
play()
, not publish()
, I get a dialog to allow microphone access.I tried to apply the stream
muteAudio()
, muteVideo()
and record=false,display=null
, but the results were the same.I want the microphone permissions dialog to appear only using
publish()
.Is there a way around it?