I have been scratching my head with this one for a while. I\'m building an Android app in Xamarin and I have a login POST request that mostly works, but will occasionally re
You can just go the Android Project > Properties > AssemblyInfo.cs file. Open the AssemblyInfo file and add the following line at the end:
[assembly: Application(UsesCleartextTraffic = true)]
This helped me solve my problem. I hope it helps you also