I'm writing a music player that purely relies on the android content providers (MediaStore) at the moment. The problem is that the content provider doesn't always pick up all the music on the device, especially when people have strange configurations/custom roms etc.
I'm sure there is information out there about this, but I don't know what it's called or what to search for. Basically I want the device to use the content provider, but also search for media files in the background, then compare them with the content providers and add them to my adapter if they don't exist in the content provider.
Is there any open source code which does this for music or images or anything else? I'd like to see some examples.