Skip to content

Instantly share code, notes, and snippets.

@trinnguyen
Created January 26, 2017 04:24
Show Gist options
  • Save trinnguyen/7d3830dd9006fa4eb05ad5fcb67772d5 to your computer and use it in GitHub Desktop.
Save trinnguyen/7d3830dd9006fa4eb05ad5fcb67772d5 to your computer and use it in GitHub Desktop.
Workaround to fix Xamarin.Android Linker for AndroidClientHandler
using System;
namespace MyApp.Droid
{
public class AndroidClientHandlerLinkerOverride
{
public void Include()
{
var handler = new Xamarin.Android.Net.AndroidClientHandler();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment