Skip to content

Instantly share code, notes, and snippets.

@AlejandroRuiz
Created February 17, 2020 18:59
Show Gist options
  • Save AlejandroRuiz/f83136f938ff315e9a51ef3531aeb490 to your computer and use it in GitHub Desktop.
Save AlejandroRuiz/f83136f938ff315e9a51ef3531aeb490 to your computer and use it in GitHub Desktop.
MediaElement experimental flag config
public partial class App : Application
{
static App()
{
Device.SetFlags(new[] { "MediaElement_Experimental" });
}
public App()
{
InitializeComponent();
MainPage = new MainPage();
}
protected override void OnStart()
{
}
protected override void OnSleep()
{
}
protected override void OnResume()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment