Junior Saravia
Junior Saravia
I'm currently migrating a Xamarin app which uses Plugin.BLE. I'm using .NET MAUI 8 and Plugin.BLE. When I use ConnectToKnownDeviceAsync in .NET MAUI 8 and run the following code: ```csharp...
I'm using `ConnectToKnownDeviceAsync` method but it throws a Task was canceled exception ```c# using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(10)); var param = new ConnectParameters(true, true); await adapter.ConnectToKnownDeviceAsync(deviceId, param, cts.Token); ```...
### Is there an existing issue for this? - [X] I have searched the existing issues ### Did you read the "Reporting a bug" section on Contributing file? - [X]...
**Describe the bug** When the Bluetooth is off, the plugin can still detect Bluetooth devices (this only happens on Android). Even it's possible to connect. **To Reproduce** Steps to reproduce...
I'm using Plugin.Fingerprint v3.0.0-beta.1. If the face is not recognized twice, it shows an option to enter the passcode but nothing appears. Similar issue was reported and fixed: https://github.com/smstuebe/xamarin-fingerprint/issues/60 ##...
I'm currently using the [Plugin.Firebase.Crashlytics](https://github.com/TobiasBuchholz/Plugin.Firebase/blob/development/docs/crashlytics.md) package to run Crashltytics services on my app, but it doesn't detect any bugs on the dashboard (I'm pointing NET MAUI v8.0.100). According to [this...
DfuInstallation.Start() throws Bad notification for startForeground thrown on .Net MAUI (Android)
**Describe the bug** I'm implementing the functionality to upgrade a firmware using DFU but it throws an exception when executing DfuInstallation.Start(). I've declared the Foreground Service permission on AndroidManifest.xml and...