ryanheise
ryanheise
There have been some reports that the content type sometimes doesn't work on stream audio sources so the rule that out I recommend testing on a proper server.
Here's the relevant Java code: ```java private void enterPlayingState() { ContextCompat.startForegroundService(this, new Intent(AudioService.this, AudioService.class)); if (!mediaSession.isActive()) mediaSession.setActive(true); acquireWakeLock(); mediaSession.setSessionActivity(contentIntent); internalStartForeground(); } private void internalStartForeground() { startForeground(NOTIFICATION_ID, buildNotification()); notificationCreated = true;...
Just to confirm, this error was produced using the official example, according to the reproduction instructions above?
Can you please paste the error message in plain text within a code block? Edit: and also, edit your existing bug report to use this format.
That's not in a code block. The original bug report template included a code block and you just needed to insert the error message between the start and end of...
You didn't edit your original report. The screenshot is still there.
Do you have a link to the github.io site?
It's my code we're talking about here, since you said this is the official example.
So is the problem with github.io specifically? Or can you verify that it is a problem with just_audio_web (e.g. by showing that it also fails in the same way on...
I don't mean localhost, I mean a regular web server. If you are able to install apache or nginx locally, you may test that to verify if those work.