Zidd
Zidd
I solve this issue by change: PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 0, new Intent(NOTIFY_PREVIOUS), PendingIntent.FLAG_UPDATE_CURRENT); to Intent intentAction = new Intent(NOTIFY_PREVIOUS); intentAction.setClass(getApplicationContext(), AudioStreamingReceiver.class); PendingIntent pendingIntent = PendingIntent.getBroadcast(getApplicationContext(), 0, intentAction, PendingIntent.FLAG_UPDATE_CURRENT); Make...
@MGareta thanks for the trick
Just use pip work for me, I used pip3 before.