Unable to Play/load live streaming audio from zeno radios

I’ve an application that is streaming live audio from zeno radio, using angular audio to play it and its working well on the web and tecno pop2 android version 8.1.0, but can’t load the audio in any other device.

Its similar to this, but its unanswered:

Continuing the discussion from Unable to Play/load live streaming audio from zeno radios:

I seem to find a way by reducing the default target sdk version to 27 which is for android version 8, and it works but noticed changes in some features and app display changed, eg didn’t display background image.

solved::: I added this to the android

    android:usesCleartextTraffic="true"

go to android>app>src>AndroidManifest.xml and add this to the <application tag

<application
    android:usesCleartextTraffic="true"
    
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">