Christopher-Marcel Esser
Christopher-Marcel Esser
I've used symlinks for `gradle.properties` successfully on Windows and can confirm it works when you got it configured before you clone the repo: https://github.com/git-for-windows/git/wiki/Symbolic-Links
> You should be able to make Texture objects that ref existing native textures in Unity 👉 https://docs.unity3d.com/ScriptReference/Texture2D.CreateExternalTexture.html (The other way round: https://docs.unity3d.com/ScriptReference/Texture.GetNativeTexturePtr.html)
I have this issue and am not using any VPN. If there is something we can grab to help with this (logs, where?) let us know!
Oh I wasn't aware of that repo yet! I am using [tagcode/serilog-settings-reloader](https://github.com/tagcode/serilog-settings-reloader) currently (with great success). Any two cents on the difference and general state of yours, Nick?
I believe this can be done nowadays by just making all analyzers use [`ConfigureGeneratedCodeAnalysis(GeneratedCodeAnalysisFlags.None)`](https://docs.microsoft.com/dotnet/api/microsoft.codeanalysis.diagnostics.analysiscontext.configuregeneratedcodeanalysis).
I believe this is due to you missing the WebView2 runtime, as noted in blue text in the screenshot. I think what's happening is that you would normally get a...
The solution to this can be found [here](https://github.com/dotnet/core/blob/main/release-notes/6.0/known-issues.md#preview-5) I believe.
But Microsoft's OpenJDK 11 [is recommended](https://github.com/dotnet/net6-mobile-samples/blob/17b732a672926fb22f06739f0679a9b68d170810/README.md#L80) for the upcoming preview according to the mobile samples repo 🤔 @jonathanpeppers Any insight perhaps? 🙏
This is what I'm currently doing for supporting [GMD](https://developer.android.com/studio/test/gradle-managed-devices) tests (the only instrumented tests I run myself currently): ```kotlin extensions.getByType(AndroidComponentsExtension::class).onVariants { variant -> executionDataConfiguration.configure { afterEvaluate { // We do...
>So the question now is, does AGP support to generate the JaCoCo coverage file (.ec) for instrumented tests. That's what it _already_ does. Sorry, that wasn't clear in my original...