TeamMaestro / capacitor-video-recorder

Video recorder plugin for Capacitor
59 stars 31 forks source link

No listeners found for event onVolumeInput #25

Closed rbenzing closed 4 years ago

rbenzing commented 4 years ago

As soon as the VideoRecorder is started i get "No listeners found for event onVolumeInput" continuously in my applog in AndroidX. Is this missing from the docs as a required step?

I tried adding:

VideoRecorder.addListener("onVolumeInput", (value: number) => {
  console.log("onVolumeInput was fired", value);
});

this didnt fix the continuous message though. Any help would be appreciated.

rbenzing commented 4 years ago

what fixed this for me was "invalidating cache/restart" in Android Studio after putting the listener code in the constructor of my component.