Jonathan Peppers
Jonathan Peppers
@simphonydeveloper did you get it working? Can we close? https://github.com/dotnet/maui/issues/13576#issuecomment-1447329247 Looking at the commands above you are probably just missing something, I don’t think there is a bug here.
@Banurega can you share a log of the crash? ``` adb logcat -c adb shell setprop debug.mono.log default,assembly,mono_log_level=debug,mono_log_mask=all # Launch the app, cause the crash adb logcat -d > log.txt...
The error is: ``` java.lang.NoSuchFieldError: no "Landroidx/security/crypto/EncryptedSharedPreferences$PrefKeyEncryptionScheme;" field "AES256_SIV" in class "Landroidx/security/crypto/EncryptedSharedPreferences$PrefKeyEncryptionScheme;" or its superclasses ``` @Banurega have you already tried adding a `proguard.cfg` file to preserve this? ``` -keepmembers...
@Banurega what is the new error? Do you still see `java.lang.NoSuchFieldError: no "Landroidx/security/crypto/EncryptedSharedPreferences$PrefKeyEncryptionScheme;" field "AES256_SIV" in class "Landroidx/security/crypto/EncryptedSharedPreferences$PrefKeyEncryptionScheme;" or its superclasses`?
@Banurega the sample above does not have any proguard rules. Can you update with the file you actually used? It sounds like the `AES256_SIV` field was not preserved if you...
This might cause a test failure on iOS: 
Can repro the test failure locally, I can say that I am a bit confused:  There might be an issue in this test, will look into it.
Ok the test uses `async void` to do work: https://github.com/dotnet/maui/blob/53f6e393750a3df05b12fcde442daf3616c216f8/src/Controls/tests/DeviceTests/Elements/Window/WindowTests.cs#L125 xunit is moving on as if the test passed, but test code is continuing to run. Will review if we...
Will come back to this after this one lands: https://github.com/dotnet/maui/pull/13536
@MaksimAdamenko can you share the version numbers before & after you are comparing here? `dotnet workload update --print-rollback` would show the versions of all your workloads. I compared an `.apk`...