Unable to Play/load live streaming audio from zeno radios

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">