Android Question ResponseError. Reason: java.net.UnknownServiceException: CLEARTEXT communication..

Dear,,
When i debug using android pie 9.0 above i got this error..
I have looking for answer and get this , i have tried and still get the error... maybe i put the line in wrong place, please help wherei have put it ?
B4X:
CreateResourceFromFile(Macro, Core.NetworkClearText)

I have add to AndroidManifest.xml

B4X:
<?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="b4a.example"
    android:versionCode="1"
    android:versionName=""
    android:installLocation="internalOnly">
    <uses-sdk android:minSdkVersion="5" android:targetSdkVersion="28"/>
    <supports-screens android:largeScreens="true" 
        android:normalScreens="true" 
        android:smallScreens="true" 
        android:anyDensity="true"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
    <uses-permission android:name="android.permission.WAKE_LOCK"/>
    <application
        android:icon="@drawable/icon"
        android:label="PAS Mobile"
        android:theme="@style/DarkTheme">
        <activity
            android:windowSoftInputMode="stateHidden"
            android:launchMode="singleTop"
            android:name=".main"
            android:label="PAS Mobile"
            android:screenOrientation="portrait">
            <intent-filter>
               <action android:name="android.intent.action.MAIN" />
               <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <service android:name=".starter">
        </service>
        <receiver android:name=".starter$starter_BR">
        </receiver>
        <service android:name=".httputils2service">
        </service>
        <receiver android:name=".httputils2service$httputils2service_BR">
        </receiver>
        <CreateResourceFromFile(Macro, Core.NetworkClearText)/>
    </application>
</manifest>
 
Top