LuisDavidDelaCruz ✭✭✭
//ANDROID//
Hello everyone.
If someone is working with Xamarin.Forms and using DependencyServices or Custom Renderers and try to use the current context
before we used to use
(SomeManager)Forms.Context.GetSystemService(Context.SomeManager); // Xamarin.Forms.Forms.Context
Now we can simplify in this way
Context _context = Android.App.Application.Context;
(SomeManager)_context .GetSystemService(Context.SomeManager);