Anthony Whitford
Anthony Whitford
@Dhuliang Honestly, I've given up on this library and instead followed the instructions from the article @kareldebedts mentioned: https://medium.com/@karlwhiteprivate/flutter-facebook-sign-in-with-firebase-in-2020-66556a8c3586 It was not too challenging and I didn't need to worry...
I had a query like this: ```dart return Firestore.instance .collection('places') .getDocuments() .then((data) => data.documents .map((doc) => Place( id: doc["id"], title: doc["title"], )) .toList()); ``` I changed it to use `within`...
BTW... It appears that `within` returns records sorted by the distance from the center. I did not see that documented.
So this is what I figured out I needed to do... ```dart final GeoFirePoint point = GeoFirePoint( doc["geoLocation"]["geopoint"].latitude, doc["geoLocation"]["geopoint"].longitude); ``` This seems to work, but I'd prefer to see `GeoFirePoint`...
I added some [Dart Extension Methods](https://dart.dev/guides/language/extension-methods) in the meantime.
I'm still suffering from this problem on a fresh _Play 2.3.9 Scala_ project. (I'm puzzled where the `sbt-idea-1.5.1` dependency is coming from since it doesn't appear on `plugins.sbt`. Adding it...
https://github.com/projectlombok/lombok/issues/3025 is holding back the upgrade to Lombok 1.18.22. You can try overriding the Lombok version, as described [here](http://anthonywhitford.com/lombok.maven/lombok-maven-plugin/faq.html#version-override).
The "duplicate class" issue is precisely the reason why lombok code is segregated into its own source tree. However, I think you should be able to work around your issue...
I understand the frustration, but options are limited. Fundamentally, delombok is acting like a source code _generator_; as much as you may want to think of it as a _transformer_,...
I recently responded to Issue #17 which is very similar. One needs to: 1. Override the default `` from `src/main/java` to be `${project.build.directory}/generated-sources/delombok`. 2. Override the default delombok `sourceDirectory` from...