Kent Boogaart

Results 63 comments of Kent Boogaart

I get exactly the same behavior if I use the Flutter_Social_login by @YahiaAgwa [here](https://github.com/YahiaAgwa/Flutter_Social_login).

@timotei version is 2.0.12. Unfortunately, the app I'm running this against isn't yet live in Google Play store. Can I send the APK to you directly?

I am attempting to do this on Windows. I'll ping you with the APK 👍

Instructions for repro: 1. Unzip the provided APK to `$root` 2. `cd $root\assemblies` 3. `ILRepack.exe /union /wildcards /out:whatever.dll /verbose QUT.dll *.dll`

Thanks. Downloading Polaris now. So I guess the trick is to specify both `TypeIdentifierPrefix` and manually specify an `Identifier` for every entity? Example: ``` C# // AssemblyInfo.cs [assembly: TypeIdentifierPrefix("http://www.example.com/types/")] [assembly:...

Good point about entity extensibility. The way I dealt with this is to change my entity->contract extension method helpers to produce immutable values rather than simply wrapping the entity and...

Thanks @alfonsogarciacaro. Hmm, I had tried that and it looks like it will work from an IDE perspective (relevant code is dimmed), but Fable still bundles the code wrapped in...

@alfonsogarciacaro Yeah, I'm just not sure what's going on yet. I can see from the Fable compiler source how it chooses a configuration, can confirm from build output that it...

Hi @MangelMaxime. It's Fable 3.7.11, invoked as: ``` dotnet fable C:\\src -o C:\\.build\web\fable --exclude FablePlugins --precompiledLib C:\\.build\web\fable --noParallelTypeCheck -s --watch --watchDelay 500 --define _PLATFORM_IS_WEB --run C:\\node_modules\.bin\webpack-dev-server --config C:\\webpack.config.js ``` >...

Sorry, totally screwed up that fable command in my haste. Will get back to you once production fires are out.