Capacitor Camera - Android - Saving Image on gallery when saveToGallery is set to false

I’m using capacitor plugin, on IOS after the image is taken it’s not being saved on the gallery but with Android after taking the picture and even closing the app the picture it’s showing up on the gallery.

My configuration :

  const image = await Plugins.Camera.getPhoto({
      quality: 70,
      saveToGallery: false,
      resultType: CameraResultType.Uri,
      source: CameraSource.Camera
    });

Any idea why ? Or how to delete the file after process? I tried with the Path but it’s not working.

That does seem like a bug. Found your issue - track it here.