diff --git a/android/src/main/java/io/wazo/callkeep/RNCallKeepModule.java b/android/src/main/java/io/wazo/callkeep/RNCallKeepModule.java index 025480ac..70a13051 100644 --- a/android/src/main/java/io/wazo/callkeep/RNCallKeepModule.java +++ b/android/src/main/java/io/wazo/callkeep/RNCallKeepModule.java @@ -434,11 +434,6 @@ public void unregisterEvents() { this.hasListeners = false; } - @ReactMethod - public void displayIncomingCall(String uuid, String number, String callerName) { - this.displayIncomingCall(uuid, number, callerName, false, null); - } - @ReactMethod public void displayIncomingCall(String uuid, String number, String callerName, boolean hasVideo) { this.displayIncomingCall(uuid, number, callerName, hasVideo, null); @@ -483,11 +478,6 @@ public void answerIncomingCall(String uuid) { conn.onAnswer(); } - @ReactMethod - public void startCall(String uuid, String number, String callerName) { - this.startCall(uuid, number, callerName, false, null); - } - @ReactMethod public void startCall(String uuid, String number, String callerName, boolean hasVideo) { this.startCall(uuid, number, callerName, hasVideo, null);