APIをRetrofitを使い取得しようとしたときにエラーになったのでメモ
CLEARTEXT communication to xxxxxxx.com not permitted by network security policy
http通信が許可されていないことからこのエラーになる。
Manifestにandroid:usesCleartextTraffic="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/Theme.SimpleRetrofit"
//下記を足す
android:usesCleartextTraffic="true"
>
これで通信許可ができるはず。