My app queries the contacts content provider to display a list of frequent contacts (using the Contacts.CONTENT_STREQUENT_URI) and their photos (Data.CONTENT_URI). The cursor returned from the query is always closed in a finally block.
However, when inspecting in the Settings -> Apps -> RUNNING, there are always 2 processes for my app, and one of them is Android Core Apps (android.process.acore) which takes up about 10 extra MB and makes my app look bulky.
Is there anything I can do to disconnect my app with the contacts content provider after I finish my queries?