We are getting "Sharing violation path exception" when I access image after image saved is called for image editor in
Android, Here is my code
Here is my code to read image after image is saved.
When I try to read image it throws exception of image sharing. I think possible issue could be
1. Image is still not saved and used by SfimageEditor so its creates issues. if this is the case then ImageSaved should be called after image is saved properly.
2. Another reason could be that objects are not disposed properly after saving image and image is still used by them.
One more thing I noticed in android is ImageSaved is called first and then ImageSaving is called, its reverse in case of IOS(As per naming the flow I see in IOS is correct).
Ideally ImageSaving should be called first and then ImageSaved.
FYI : All these logical flow works fine for IOS application.