Skip to content Skip to sidebar Skip to footer

Ignore Ssl Certificates Error In Axios/fetch Call In React-native Expo Android

I just started using react-native and am trying to build an android app with it.. I used create-react-native-app and used the expo template. But I'm not able to fetch data from my

Solution 1:

Yes, only use the http instead https, and set the following line in your manifest

<application
...
android:usesCleartextTraffic="true"
...>

Post a Comment for "Ignore Ssl Certificates Error In Axios/fetch Call In React-native Expo Android"