无法解析主机。没有与主机名关联的地址

Unable to resolve host. No address associated with hostname

我正在尝试将我的移动应用程序与我的桌面应用程序连接起来,但这对我来说是不可能的。 两台设备都连接到同一个 wifi,我的清单上有互联网权限。

在应用程序标签后清单

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

错误

I/System.out: Unable to resolve host "JarsUbuntuComputer": No address associated with hostname

在 JarsUbuntuComputer 的位置输入您计算机的 IP 地址,并确保端口号相同或不同

同时在 Application 标签的 Manifest 中添加这个

android:usesCleartextTraffic="true"
android:allowClearUserData="true"

完整代码

<application
    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"
    android:usesCleartextTraffic="true"
    android:allowClearUserData="true">
    <activity android:name=".MainActivity"></activity>