help setting up event listener? #44

Description
I think I have react-native-callkit set up correctly, because I can get checkIfBusy to report true
if I am in a call, and false
otherwise. I am somewhat new to react-native so please forgive me if this is something basic!
However, I'm having trouble getting the event listeners to work.
My current setup is this:
in the component constructor:
RNCallKit.addEventListener('didReceiveStartCallAction', this.onRNCallKitDidReceiveStartCallAction);
as the first component method after the constructor and the state declaration:
onRNCallKitDidReceiveStartCallAction(data) {
console.log('--Start call action--');
console.log(data);
console.log(uuid);
const myUuid = uuid.v4();
RNCallKit.startCall(myUuid, data.handle);
}
I open the app on my Iphone (5s with iOS 11.4), with XCode and the debugger running, and make a call from my Recents, but the console doesn't display '--Start call action--', which I interpret to mean that this event is not being processed.
I'm not seeing any error messages or anything. Thank you for any help!