JuKu
JuKu
I have the same issue with vertx, but with OracleJDK 9.
Same problem here. Maybe flutter_svg is incompatible with any SVGs which use the "fill" command?
Same problem here. Error Log: ```text Performing hot restart... Waiting for connection from debug service on Edge... Restarted application in 265ms. Permission granted: AuthorizationStatus.authorized Error: Assertion failed: file:///C:/Users//AppData/Local/Pub/Cache/hosted/pub.dev/firebase_crashlytics_platform_interface-3.6.16/lib/src/platform_interface/platform_interface_crashlytics.dart:31:12 pluginConstants['isCrashlyticsCollectionEnabled'] !=...
The errors disappears with the execution of the command `flutter pub add firebase_messaging`, which updates the dependencies, but the app still hangs up at this point.
@elmindreda Is there an update?
Use 'const' for final variables initialized to a constant value. Try replacing 'final' with 'const'.
@emintolgahanpolat But this doesn't solve the underlying problem. As I know, a const field is more performant, than a final field.
Use 'const' for final variables initialized to a constant value. Try replacing 'final' with 'const'.
@emintolgahanpolat I think this should work! :) And it should solve the problem very well. Btw, I think these are the rules from the Flutter analyzer: - https://dart.dev/tools/linter-rules/prefer_const_constructors_in_immutables - https://dart.dev/tools/linter-rules/prefer_const_literals_to_create_immutables...
What's the current state?
Unfurtunately, i only need the gettext() components of this library. So i can try to maintain them (for a while), but i don't have any interest in maintaining the date...
Also this code isn't possible: ```java @Test public void preferred_date_format_returns_localized_default_for_current_locale() { I.setLanguage("en"); assertEquals("MM/dd/yyyy", I.preferredDateFormat()); I.setLanguage("fr_FR"); assertEquals("jj/MM/aaaa", I.preferredDateFormat()); I.setLanguage("de_DE"); assertEquals("tt.MM.uuuu", I.preferredDateFormat()); } ``` character "j" isn't used by SimpleDateFormat, so it...