I have such a problem in my application. When I plug in the headphones (custom headPhone), Google Play Music launches automatically. I do not need it!
So, I tried to stop this service as follows:
Intent intent = new Intent("android.intent.action.MUSIC_PLAYER");
stopService(intent);
But there is no result.
I don’t want Google Play Music to start automatically. So how can I avoid this situation programmatically?
user3710065
source
share