I've created a new Xamarin Android project on Visual Studio 2022. Code and designer works properly. I wanted to deploy the app to the Android Emulator. First I have problem with "file doesn't exists: xxx.tmp" error and I assumed this is about the non ascii characters of my user name "Özkan..." and changed my temp dir to C:\Temp.
After trying again to deploy, now I have a compile error:
Error Error in C:\Users\Özkan\.nuget\packages\xamarin.google.guava.listenablefuture\1.0.0.2\buildTransitive\monoandroid50\guava-listenablefuture.jar:
java.nio.file.NoSuchFileException: C:\Users\Özkan\.nuget\packages\xamarin.google.guava.listenablefuture\1.0.0.2\buildTransitive\monoandroid50\guava-listenablefuture.jar
However I've checked the "C:\Users\Özkan\.nuget\packages\xamarin.google.guava.listenablefuture\1.0.0.2\buildTransitive\monoandroid50\guava-listenablefuture.jar" and it exists in it's location.
And bunch of some other files with the same kind of error.
Looks like java doesn't recognize the non ascii command line parameters / file paths. How can I overcome the problem_