You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ci: make the Android gate pass what it actually checks
Three things the gate caught that local runs had not:
`dart format` walks into mobile/build and dies on Gradle's intermediates,
so the CI step now names lib, test and packages explicitly rather than `.`.
It has no ignore file of its own.
Reformatting broke two suppressions. `// ignore: deprecated_member_use`
attaches to the following line, and the formatter reflowed
`import ... show CorePalette;` across four lines, leaving the comment
pointing at nothing. Importing material_color_utilities without a `show`
clause removes the deprecated-member reference from the import site
entirely; the per-usage ignores were already correct and still apply.
CorePalette stays because it is what dynamic_color returns on Android.
A brace-less `if` body in the v2ray-plugin branch of the shadowsocks
converter tripped curly_braces_in_flow_control_structures under
--fatal-infos.
Verified locally with the exact CI command set: dart format clean,
flutter analyze --fatal-infos clean, 731 + 145 + 100 tests, APK builds.
0 commit comments