Skip to content

Commit e7f6c0c

Browse files
Upgrade to Flutter 3.32 (#1224)
* Update to flutter 3.29 * [BOT] Applying format. * Remove generated files * add to git ignore generated files * [BOT] Applying version. * Exclude generated files from analysis * [BOT] Applying pod update. * Deal with edge to edge crap * [BOT] Applying format. * Remove unused import * Test coverage fix * fix path * add lcov * try to fix path * try a faster way of removing l10n from coverage * fix small l10n issue * Fix test
1 parent 32710be commit e7f6c0c

File tree

114 files changed

+616
-628
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+616
-628
lines changed

.github/composite/flutter-setup/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ runs:
2727
steps:
2828
- uses: subosito/flutter-action@v2
2929
with:
30-
flutter-version: '3.29.x'
30+
flutter-version: '3.32.x'
3131
channel: 'stable'
3232
cache: true
3333

.github/composite/tests/action.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,10 @@ runs:
4545

4646
- name: Run tests
4747
shell: bash
48-
run: flutter test --coverage
49-
48+
run: |
49+
chmod +x ./scripts/remove_l10n_from_coverage.sh
50+
./scripts/remove_l10n_from_coverage.sh
51+
flutter test --coverage
5052
- name: Upload coverage file
5153
uses: actions/upload-artifact@v4
5254
with:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ assets/certificates/
9292

9393
# Generated files
9494
.idea/**/contentModel.xml
95+
/lib/l10n/*.dart
9596

9697
# Sensitive or high-churn files
9798
.idea/**/dataSources/

analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ analyzer:
88
# strict-inference: true
99
# strict-raw-types: true
1010
exclude:
11-
- "lib/generated"
1211
- "*.mocks.dart"
12+
- "lib/l10n"
1313
formatter:
1414
page_width: 120

ios/Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ PODS:
8181
- FirebaseSharedSwift (~> 11.0)
8282
- GoogleUtilities/Environment (~> 8.0)
8383
- "GoogleUtilities/NSData+zlib (~> 8.0)"
84-
- FirebaseRemoteConfigInterop (11.12.0)
84+
- FirebaseRemoteConfigInterop (11.13.0)
8585
- FirebaseSessions (11.10.0):
8686
- FirebaseCore (~> 11.10.0)
8787
- FirebaseCoreExtension (~> 11.10.0)
@@ -91,7 +91,7 @@ PODS:
9191
- GoogleUtilities/UserDefaults (~> 8.0)
9292
- nanopb (~> 3.30910.0)
9393
- PromisesSwift (~> 2.1)
94-
- FirebaseSharedSwift (11.12.0)
94+
- FirebaseSharedSwift (11.13.0)
9595
- Flutter (1.0.0)
9696
- flutter_inappwebview_ios (0.0.1):
9797
- Flutter
@@ -300,9 +300,9 @@ SPEC CHECKSUMS:
300300
FirebaseCrashlytics: 84b073c997235740e6a951b7ee49608932877e5c
301301
FirebaseInstallations: 9980995bdd06ec8081dfb6ab364162bdd64245c3
302302
FirebaseRemoteConfig: 10695bc0ce3b103e3706a5578c43f2a9f69d5aaa
303-
FirebaseRemoteConfigInterop: 82b81fd06ee550cbeff40004e2c106daedf73e38
303+
FirebaseRemoteConfigInterop: 7915cec47731a806cda541f90898ad0fab8f9f86
304304
FirebaseSessions: 9b3b30947b97a15370e0902ee7a90f50ef60ead6
305-
FirebaseSharedSwift: d2475748a2d2a36242ed13baa34b2acda846c925
305+
FirebaseSharedSwift: aca73668bc95e8efccb618e0167eab05d19d3a75
306306
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
307307
flutter_inappwebview_ios: 6f63631e2c62a7c350263b13fa5427aedefe81d4
308308
flutter_secure_storage: d33dac7ae2ea08509be337e775f6b59f1ff45f12

l10n.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
arb-dir: l10n
1+
arb-dir: lib/l10n
22
template-arb-file: intl_fr.arb
33
output-localization-file: app_localizations.dart
44
output-class: AppIntl
55
untranslated-messages-file: app_untranslated_messages.yaml
6+
synthetic-package: false

0 commit comments

Comments
 (0)