Issue
I have used just audio package for all the urls with ending .mp3 data from apis but i want to stream radio url also can i use the same player for playing the acc format urls from api or i need to add another package for the player.
Solution
The audio file was not playing because the url starts with http flutter by default does not support the http urls it only allows https urls so play them i have added the below code to the android manifest file:
<application .... android:usesCleartextTraffic="true" .... />
Answered By - appdev
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.