Amr

Results 20 comments of Amr

I also also encountered this error > _From @VincentDondain on Mon, 30 Mar 2020 20:32:56 GMT_ > > Windows and Mac bin logs. On Mac I am not getting a...

This would be even better Activity.cs ```csharp public partial class Activity { // Metadata.xml XPath method reference: path="/api/package[@name='android.app']/class[@name='Activity']/method[@name='onCreate' and count(parameter)=1 and parameter[1][@type='android.os.Bundle']]" partial protected virtual unsafe void OnCreate (Android.OS.Bundle? savedInstanceState);...

Kinda related, I would really like if there was a tool that I could give it a Maven ID and version and it would generate the full solution with all...

While trying to fix issues in a Java library I'm binding I came upon this issue. Easily fixable with Metadata attr BUT I'm curious as to why the C# interface...

But generics with constraints is fine cuz you know what T is, got it. I suspected that would be the reason. I really want to see this implemented (+ covariant...

@mesheets This overload of [getCurrentLocation](https://developer.android.com/reference/android/location/LocationManager#getCurrentLocation(java.lang.String,%20android.os.CancellationSignal,%20java.util.concurrent.Executor,%20java.util.function.Consumer%3Candroid.location.Location%3E)) is only available on API and this [overload](https://developer.android.com/reference/android/location/LocationManager#getCurrentLocation(java.lang.String,%20android.location.LocationRequest,%20android.os.CancellationSignal,%20java.util.concurrent.Executor,%20java.util.function.Consumer%3Candroid.location.Location%3E)) is only available for API 31 so they can't be use on all versions. Also GetLastKnownLocation is...

Would calling `Finish()` _before_ returning the result to the task fix the issue? https://github.com/xamarin/Essentials/blob/main/Xamarin.Essentials/Platform/Platform.android.cs#L381-L411

Xamarin.Forms 3.0 already has RTL support. If you want a way to find out what is the direction of the current culture there is `CultureInfo.TextInfo.IsRightToLeft` property.

This bug produces 3 stacktraces I have overridden 3 methods in my CustomCarouselViewRenderer This ```csharp protected override void UpdateAdapter() { try { base.UpdateAdapter(); } catch (ArgumentOutOfRangeException e) { System.Diagnostics.Debug.WriteLine(e)); }...

@alzubitariq This is expected. Xamarin.Form's `App` class was initialized from the `MainActivity` not the `MainApplication`. When a notification was received in the background the `MainApplication` would be called but not...