I am using WebRTC getStats() API on android to get stats and I am getting most of the data which I need. But I can't find data to determine if TURN used or not.
Please check the sample json data. https://pastebin.com/v89aaL2H
private void getStats() {
if (peerConnection == null || isError) {
return;
}
boolean success = peerConnection.getStats(reports -> events.onPeerConnectionStatsReady(reports), null);
}