I'm tring to create a library for phonegap that give me control about remote control client. All phonegap side plus structure of new class is made but i don't know how change metadata.
I've made this function:
public void setMetadata() {
RemoteControlClient.MetadataEditor editor = remoteControlClient.editMetadata(true)
.putString(MediaMetadataRetriever.METADATA_KEY_ALBUM, "CIAO");
}
but i'm sure that i've missed something like a register function.
Someone can give me an help?
Thanks!