The best way to store data

I need to save some photo related information for my application. I understand that you can read / write GPS location and image description already to the image content provider.

I will also need to add fields (flags) to synchronize the clouds, that is, using the “UPDATE” and “SYNCHRONIZING NEEDS” ... etc.

Can I add additional columns to the default image content provider to store these flags? If not the best way to store them?

I was thinking about setting up my own SQLite table, but since I only need to store one or two fields for these flags, it seems to me like overkill.

+3
source share

Source: https://habr.com/ru/post/1794505/


All Articles