I have an application in which I use Cursors to save the data obtained from a SQLite query and in many occasions I forget to close them Cursor.close();
What problems can that bring me? Does it consume more RAM in the device?
If that were the case, it would make up for me to go through the whole app and close them all, but if it does not have benefits, I will not hurry to close them.