Dominik Minta

Results 4 comments of Dominik Minta

@vasani-arpit Such error occurs when your core Forms project is PCL, not shared project (like in ColorTestApp). For now there are 2 solutions: - convert your core project to shared...

In described scenario `DownloadCache.DownloadAsync(...)` method throws unhandled `DownloadHeadersTimeoutException`. The bug can be reproduced when `HttpHeadersTimeout` configuration property has value `0`. My workaround: 1. Implement `CustomDownloadCache` ``` public class CustomDownloadCache :...

In `android/build.gradle` replace ``` classpath 'com.android.tools.build:gradle:2.3.3' classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.2-4' ``` with ``` classpath 'com.android.tools.build:gradle:3.2.1' classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.51' ``` In `android/gradle/wrapper/gradle-wrapper.properties` replace ``` distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip ``` with ``` distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip ``` In `lib/Routes.dart` replace ```...

> Thanks! This will have to wait until we have a B-sides benchmark as mentioned [here](https://github.com/MichalStrehovsky/sizegame/issues/14#issuecomment-1556152526). There already is a compiler for assembly and I chose the one from the...