Maciej Piekarski

Results 6 comments of Maciej Piekarski

@Purus what do you think about this change? Maybe we could use the already existing `writeReview` flag to control showing the toast in case you don't want to remove it...

@KeithBacalso well, the PR is still open so... 😉

@KeithBacalso I moved away from this plugin as implementation is quite easy. You need: ### the flutter part ``` static const platform = const MethodChannel('your.channel.name'); platform.invokeMethod('yourMethodName', {'android_id': 'com.yourapp', 'ios_id':'123'}); ```...

I wanted to give it a try with the simplest configuration possible: ``` @Log4j2 @Component public class SqsConsumer { @SqsListener("${my-queue.arn}") public void receiveMessage() { log.info("------------------------------ RECEIVED: " + LocalDateTime.now()); }...

Sorry, I can't help but I think it's worth mentioning that [according to the docs, "." is a recognized separator](https://day.js.org/docs/en/parse/string-format#list-of-all-recognized-separator-characters).

Sorry, I should've phrased my message differently. I just wanted to highlight that the behavior you expect matches the documentation (as you used a _recognized separator_), so it seems like...