Created
February 17, 2020 18:59
-
-
Save AlejandroRuiz/f83136f938ff315e9a51ef3531aeb490 to your computer and use it in GitHub Desktop.
MediaElement experimental flag config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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