Answers for "err_cleartext_not_permitted react native"

2

net::ERR_CLEARTEXT_NOT_PERMITTED

// Agrega esta linea en el android/app/src/main/AndroidManifest.xml

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:usesCleartextTraffic="true" <------------- esta linea
        android:theme="@style/AppTheme">
Posted by: Guest on July-30-2021
0

err_cleartext_not_permitted

<application
    ....
    android:usesCleartextTraffic="true"
    ....>
Posted by: Guest on October-13-2020

Code answers related to "err_cleartext_not_permitted react native"

Browse Popular Code Answers by Language