Miroslav Thompson

Results 21 comments of Miroslav Thompson

Sure, uglify has a strong support... But: - original JS code = 417 KB - uglified = 123 KB - packing the uglified code with packer = 81 KB That's...

@jsuarezruiz @PureWeen I created a reproduction repo! https://github.com/czmirek/mauiiOScollectionviewbug Steps to repro: - Run app on iPhone or on iPhone Simulator 15 17.2 - Click on Clear & Load items ---...

Workaroud for this is: ```csharp #IF IOS await Task.Delay(500); #endif ``` Apparently it is some kind of racing condition bug, I was not able to find a better workaround.

Of course not, if the problem is CollectionView being inside VeritcalStackLayout I can use something else instead to position different UI elements under the CollectionView...like a Grid or CollectionView's footer....

I have the same problem with `Xamarin.Facebook.iOS` Same as above, I have configured long paths, removed bin/obj/.nuget, nothing works. ``` 14>C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\amd64\Microsoft.Common.CurrentVersion.targets(4911,5): warning MSB3026: Could not copy "C:\Users\lesar\.nuget\packages\xamarin.facebook.sharekit.ios\12.2.0.1\lib\net6.0-ios15.4\Facebook.ShareKit.resources\FBSDKShareKit.xcframework\ios-arm64_i386_x86_64-simulator\FBSDKShareKit.framework\Modules\FBSDKShareKit.swiftmodule\arm64.swiftinterface"...

Does anyone know if it's possible to run MAUI for iOS debug on real device from cmd somehow, without Visual Studio? I'm trying the following command `dotnet build -t:Run -f...

My app is not starting in a release for TestFlight with this exact exception. The stack trace is completely useless, the exception info `EXC_BAD_ACCESS (SIGSEGV)` looks like a memory leak...

For anyone finding this, I found this issue is also related to https://github.com/dotnet/sdk/issues/28880 and for the code to work in release, you need to add `false` to your MAUI csproj.

@drasticactions So, I'm trying to create a workaround and implement the Hot Reload support for my specific popup directly using your instructions...but I can't make it work. I tried to...