From 0ed56f0bc463f64fee3aef0feab66563236f3b3c Mon Sep 17 00:00:00 2001 From: Pasquale Boemio Date: Mon, 11 Nov 2019 01:14:12 +0100 Subject: [PATCH] fixed interface --- .../com/github/helloiampau/app/custom/CustomProtocol.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/android/app/src/main/java/com/github/helloiampau/app/custom/CustomProtocol.java b/examples/android/app/src/main/java/com/github/helloiampau/app/custom/CustomProtocol.java index fa708c7..db8dfa7 100644 --- a/examples/android/app/src/main/java/com/github/helloiampau/app/custom/CustomProtocol.java +++ b/examples/android/app/src/main/java/com/github/helloiampau/app/custom/CustomProtocol.java @@ -44,12 +44,12 @@ public void onAnswer(String sdp, Bundle context) { } @Override - public void onIceCandidate(String mid, int index, String sdp) { + public void onIceCandidate(String mid, int index, String sdp, Bundle context) { } @Override - public void onIceCompleted() { + public void onIceCompleted(Bundle context) { }