Essentials
Essentials copied to clipboard
Xamarin.Essentials is no longer supported. Migrate your apps to .NET MAUI, which includes Maui.Essentials.
Bug report best practices: [Submitting Issues](https://github.com/xamarin/Essentials/blob/main/SUBMITTING-ISSUES.md) ### Description ### Steps to Reproduce ``` if (Connectivity.ConnectionProfiles.Contains(ConnectionProfile.WiFi) || Connectivity.ConnectionProfiles.Contains(ConnectionProfile.Cellular) || Connectivity.ConnectionProfiles.Contains(ConnectionProfile.Ethernet)) { hasConnection = true; } Debug.WriteLine(hasConnection); ``` ``` Debug.WriteLine(Connectivity.NetworkAccess); if (!Connectivity.NetworkAccess.Equals(NetworkAccess.None)...
### Description ### Steps to Reproduce ``` public static bool IsWlanConnection() { var profiles = Connectivity.ConnectionProfiles; if (profiles.Contains(ConnectionProfile.WiFi)) { return true; } return false; } ``` ### Expected Behavior Should...
Currently, we can pick only a single photo.
### Description In UWP, checking permission for microphone always returns "Granted" even if app permission for microphone is set to "off" ### Steps to Reproduce 1. Ensure that in Windows...
I written a little app that writes a GPX file contains a track composed with returned locations. The app is based on the app described in https://github.com/jfversluis/XFBackgroundLocationSample. The coordinates are...
### Our xamarin.forms app has faced a native crash for iOS (SIGSEGV). According to the available crash information on App Center, it seems like the crash is related to "Xamarin_Essentials_Preferences"...