Prevent screen from dimming or device from locking during video call.

// FREEBIE
pull/1/head
Matthew Chen 8 years ago
parent 410d5fbf7f
commit 6ce33381a8

@ -1114,6 +1114,10 @@ protocol CallServiceObserver: class {
}
}
}
// Prevent screen from dimming during video call.
let hasLocalOrRemoteVideo = localVideoTrack != nil || remoteVideoTrack != nil
UIApplication.shared.isIdleTimerDisabled = hasLocalOrRemoteVideo
}
}

Loading…
Cancel
Save