Sebastian Roth

Results 202 comments of Sebastian Roth
trafficstars

The code in firebase_storage is affected by the same bug that #4209 fixed in cloud_firestore: https://github.com/FirebaseExtended/flutterfire/blob/master/packages/firebase_storage/firebase_storage/ios/Classes/FLTFirebaseStoragePlugin.m#L104. This will for sure need some work and cleanup. IMO there is no need...

@andy-t-wang FYI, will take a look at this issue next.

I had one of these `*** JWT::VerificationError Exception: Signature verification raised` and was expecting the API to render `401 unauthorized`, instead it went straight through.

The plugin will keep the rake process in `cache`, this might also be `spring` related.

I switched to guard-shell for my usecase, it should be trivial for yours, too. https://github.com/guard/guard-shell ``` guard :shell do watch(%r{^config/routes.rb}) do `bin/rake routes` end end ```

It yields simpler code, and is supported by the android tool chain (no need “JetBrains”...) However it also adds a dependency on kotlin runtime environment which may increase app size,...

@JackAppDev Are you ok if we include a library like https://github.com/square/moshi to generate the JSON responses from simple POJOs?

@JackAppDev Or perhaps even we could switch to protobuf, which is way more efficient than we need, but it would allow us to define all data models at once. Something...

For including external java libraries like Moshi the apps final binary size will grow. I think we actually might not want to do this in the end. What if every...