SangI762

Results 7 comments of SangI762

CityBee car sharing (iOS/Android) About 120k app users.

I have the same issue. Plugin version is the same. I can see only coverage percent in my dashboard. ``` # -------------------------------- lane :metrics do scan(scheme: "Project", code_coverage: true, derived_data_path:...

It's simple like that. iOS 14.2 iPhone 11 Pro, XCode 12.2, Xamarin.Essentials 1.5.3.2 ``` public override void ViewDidLoad() { //Works Vibration.Vibrate(); MyButton.TouchUpInside += OnButtonClick; } public void OnButtonClick(object sender, EventArgs...

Tried. Not working too. Also tried this one: ``` SystemSound.Vibrate.PlayAlertSound(); MainThread.BeginInvokeOnMainThread(() => { SystemSound.Vibrate.PlayAlertSound(); }); ``` Not working too in event handler. But works in view did load method. So...

I tried haptic feedback too and it's not working also. My issue was that I'm using microphone at the same time. It's camera view... So it's not a bug I...