I'm currently working on an Android app where app takes some pictures
My requirement is to save those pictures at Local storage first, then app uploads pictures API(its an app requirement). As soon as pictures are uploaded to API i need to delete pictures from local.
I don't understand where to start,
- First I thought to use firebase, since it might cost i'm backing off.
- Use DB to store path of an image in media, but it hard to delete the image from the app(I tried)
- Internal file storage system, I think it is very slow
Note: pictures cannot be compressed. Any suggestions sample code/ any new idea is really appreciated
Update storing in file system, actually works.