Xamarin HttpClient.GetStringAsync not working on Xamarin.Droid
问题 I'm really new in Xamarin development, and I just tried Xamarin.Forms to Develop Android & iOS App with shared Code, and what I'm trying to do here is to get data from API with Plugin.RestClient NuGet package. Here's my MainViewModel. public MainViewModel(){ InitializeDataAsync(); } public async Task InitializeDataAsync(){ var employeeServices = new EmployeeServices(); EmployeesList = await employeeServices.getEmployeesAsync(); } And here's my Services public async Task<List<Employee>>