I have a solution with a Xamarin.iOS and a Xamarin.Android project. Both of them have a reference to Hasseware.Net.TMDb. The class that uses the .Net.TMDb library is in a shared project, which both the iOS and the Droid project also have a reference to.
This work fine in the iOS app, but when I run the Android app (whose functionality is identical to the iOS app), I do not get any response back when I call this function (or any other .Net.TMDb function, for that matter):
public async Task GetMoviesAsync(string query)
{
var movies = await this._client.Movies.SearchAsync(query, "en", true, null, true, 1, new CancellationToken());
return movies;
}
Any idea what can be the problem?
I have a solution with a Xamarin.iOS and a Xamarin.Android project. Both of them have a reference to Hasseware.Net.TMDb. The class that uses the .Net.TMDb library is in a shared project, which both the iOS and the Droid project also have a reference to.
This work fine in the iOS app, but when I run the Android app (whose functionality is identical to the iOS app), I do not get any response back when I call this function (or any other .Net.TMDb function, for that matter):
public async Task GetMoviesAsync(string query)
{
var movies = await this._client.Movies.SearchAsync(query, "en", true, null, true, 1, new CancellationToken());
return movies;
}
Any idea what can be the problem?