Sven-Michael Stübe

Results 35 comments of Sven-Michael Stübe

Regarding to the documentation https://docs.microsoft.com/en-us/windows/uwp/debug-test-perf/device-portal#dns-sd. > Device Portal advertises its presence on the local network using DNS-SD. All Device Portal instances, regardless of their device type, advertise under `WDP._wdp._tcp.local`. So...

I got it working by changing the auth to basic auth. in HttpHeadersHelpers I added private void ApplyHttpHeaders( HttpClient client, HttpMethods method) { var byteArray = Encoding.ASCII.GetBytes($"{deviceConnection.Credentials.UserName}:{deviceConnection.Credentials.Password}"); client.DefaultRequestHeaders.Authorization = new...

@LagniappeRob @vladPanasiuk That's how it works. If you allow alternative authentication by passing true, you ofc. get available back. https://github.com/smstuebe/xamarin-fingerprint/blob/master/src/Plugin.Fingerprint/Abstractions/IFingerprint.cs#L23 if you don't want to allow alternative authentication (pin, pattern,...

@gordonsaxby can you provide logs? If the installation fails, there should be a reason (VS output, android system logs, adb logs)

The mobile OS don't give you control over the fingerprints directly, because it's very sensitive data. This information is usually stored in a secured hardware enclave. So I think even...

> Maybe It would be interesting to create a discussion section so people can ask away their questions don't you think? 🙂 done.

can you check 2.1.0? Should fix fallback. Not sure if it fixes the face unlock issue

Damn. I had this issue with the first biometric bindings, too. But I could not reproduce it later so I thought this was fixed. Unfortunately I think this is an...

@christianaldas nope. asap != now. And as I said, I'm not sure if I can fix it, because I experienced this bug also with my own androidx bindings in the...