Skip to content

Commit

Permalink
fix flutter versions
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanschaller committed Jul 5, 2024
1 parent 81c4369 commit f8c7201
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 18 deletions.
4 changes: 0 additions & 4 deletions .fvm/fvm_config.json

This file was deleted.

3 changes: 3 additions & 0 deletions .fvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"flutter": "3.22.2"
}
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class _$IntegrationTestAndroidOptionImpl extends _IntegrationTestAndroidOption {
required this.browserstackAccessKey,
required this.apk,
required this.testSuite,
final List<String> devices = const ["Samsung Galaxy S22-12.0"],
required final List<String> devices,
this.networkLogs = true,
this.deviceLogs = true})
: _devices = devices,
Expand All @@ -199,7 +199,6 @@ class _$IntegrationTestAndroidOptionImpl extends _IntegrationTestAndroidOption {
final File testSuite;
final List<String> _devices;
@override
@JsonKey()
List<String> get devices {
if (_devices is EqualUnmodifiableListView) return _devices;
// ignore: implicit_dynamic_type
Expand Down Expand Up @@ -264,7 +263,7 @@ abstract class _IntegrationTestAndroidOption
required final String browserstackAccessKey,
required final File apk,
required final File testSuite,
final List<String> devices,
required final List<String> devices,
final bool networkLogs,
final bool deviceLogs}) = _$IntegrationTestAndroidOptionImpl;
const _IntegrationTestAndroidOption._() : super._();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ class _$IntegrationTestIosOptionImpl extends _IntegrationTestIosOption {
{required this.browserstackUsername,
required this.browserstackAccessKey,
required this.testPackage,
final List<String> devices = const ["Samsung Galaxy S22-12.0"],
required final List<String> devices,
this.networkLogs = true,
this.deviceLogs = true})
: _devices = devices,
Expand All @@ -181,7 +181,6 @@ class _$IntegrationTestIosOptionImpl extends _IntegrationTestIosOption {
final File testPackage;
final List<String> _devices;
@override
@JsonKey()
List<String> get devices {
if (_devices is EqualUnmodifiableListView) return _devices;
// ignore: implicit_dynamic_type
Expand Down Expand Up @@ -241,7 +240,7 @@ abstract class _IntegrationTestIosOption extends IntegrationTestIosOption {
{required final String browserstackUsername,
required final String browserstackAccessKey,
required final File testPackage,
final List<String> devices,
required final List<String> devices,
final bool networkLogs,
final bool deviceLogs}) = _$IntegrationTestIosOptionImpl;
const _IntegrationTestIosOption._() : super._();
Expand Down
16 changes: 8 additions & 8 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ environment:
flutter: ">=3.16.0"

dependencies:
args: ^2.4.2
http: ^1.1.2
freezed_annotation: ^2.4.1
json_annotation: ^4.8.1
args: ^2.5.0
http: ^1.2.1
freezed_annotation: ^2.4.2
json_annotation: ^4.9.0
path: ^1.9.0
# formatting the time of some jobs
intl: ^0.18.1
intl: ^0.19.0

dev_dependencies:
build_runner: ^2.4.8
flutter_lints: ^3.0.1
freezed: ^2.4.7
build_runner: ^2.4.11
flutter_lints: ^4.0.0
freezed: ^2.5.4
tapped_lints:
git:
url: https://github.com/tappeddev/tapped_lints.git
Expand Down

0 comments on commit f8c7201

Please sign in to comment.