showing results for - "react native network request failed fetch"
Sebastien
15 Jul 2019
1// Add this to info.plist
2
3<key>NSAppTransportSecurity</key>
4<dict>
5    <key>NSAllowsArbitraryLoads</key>
6    <true/>
7</dict>
8
9// Add this to AndroidManifest.xml
10<application android:usesCleartextTraffic="true">
11</application>
12