Good day everyone! I am stuck on a problem. We decided that for some reasons we need to make our own launcher for a game which will check its version and download .apk of the game to install. We dont have a xamarin developer in our team, so I was asked to try do it myself. Stuck on downloading for the 2nd day. I installed NuGet plugin DownloadManager, tried to use it and did not succeed. Some indian guy video's didn't help me either. I can make a game, but totally suck in mobile development. What should I do?
I tried:
- Making IDownloader(url, folder) with EventHandler, that did not help
- Using plugin with these code. Linked it to a button. This did not help me too. Your help will save my life
void DownloadFile()
{
var downloadManager = CrossDownloadManager.Current;
var file = downloadManager.CreateDownloadFile("someURIGodSaveMe");
downloadManager.Start(file);
}