Allow play count increment without updating the position
For audio media, the vlc-android app doesn't save the position, which means they can't use the setLastPosition/setLastTime API to increment the play_count and last_played_date.
For the play_count, setPlayCount could be used but it doesn't increment the last_played_date, meaning the media will not be bumped in the history (or not appear at all in it if the last_played_date is still NULL)
We probably need a new API such as incrementPlayCount()
which will increment the play_count and bump the last_played_date (better name welcome
Feedback from other users is also highly appreciated!