Media Capture Plugin Query

Hi Everyone,

I am using cordova-plugin-media-capture in ionic 3 framework for capturing 3 sec video. I used the following code:-

MediaCapture.captureVideo({ limit: 1, duration: 3}).then(
(data: MediaFile) => this.mediasuccess(data),
(err: CaptureError) => alert(“Action cancelled”)
);

In ios while recording video as the 3 sec duration is completed I am getting an alert as shown in below screenshot

Please tell me if there is any way to remove that alert.