Skip to content

Commit d0108be

Browse files
committed
chore(dependencies): upgrade dependencies
1 parent c3c06ec commit d0108be

27 files changed

+633
-674
lines changed

.vscode/tasks.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@
2626
"reveal": "always",
2727
"panel": "shared"
2828
}
29+
},
30+
{
31+
"label": "Run Flutter integration tests",
32+
"type": "shell",
33+
"command": "flutter test integration_test/app_test.dart",
34+
"group": {
35+
"kind": "build",
36+
"isDefault": true
37+
}
2938
}
3039
]
3140
}

ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>12.0</string>
24+
<string>13.0</string>
2525
</dict>
2626
</plist>

ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '12.0'
2+
# platform :ios, '13.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

ios/Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ EXTERNAL SOURCES:
3030
:path: ".symlinks/plugins/url_launcher_ios/ios"
3131

3232
SPEC CHECKSUMS:
33-
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
33+
Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467
3434
integration_test: 252f60fa39af5e17c3aa9899d35d908a0721b573
3535
package_info_plus: c0502532a26c7662a62a356cebe2692ec5fe4ec4
36-
shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78
37-
url_launcher_ios: 5334b05cef931de560670eeae103fd3e431ac3fe
36+
shared_preferences_foundation: 5086985c1d43c5ba4d5e69a4e8083a389e2909e6
37+
url_launcher_ios: bb13df5870e8c4234ca12609d04010a21be43dfa
3838

39-
PODFILE CHECKSUM: 819463e6a0290f5a72f145ba7cde16e8b6ef0796
39+
PODFILE CHECKSUM: 4f1c12611da7338d21589c0b2ecd6bd20b109694
4040

4141
COCOAPODS: 1.16.2

ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@
455455
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
456456
GCC_WARN_UNUSED_FUNCTION = YES;
457457
GCC_WARN_UNUSED_VARIABLE = YES;
458-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
458+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
459459
MTL_ENABLE_DEBUG_INFO = NO;
460460
SDKROOT = iphoneos;
461461
SUPPORTED_PLATFORMS = iphoneos;
@@ -585,7 +585,7 @@
585585
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
586586
GCC_WARN_UNUSED_FUNCTION = YES;
587587
GCC_WARN_UNUSED_VARIABLE = YES;
588-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
588+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
589589
MTL_ENABLE_DEBUG_INFO = YES;
590590
ONLY_ACTIVE_ARCH = YES;
591591
SDKROOT = iphoneos;
@@ -636,7 +636,7 @@
636636
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
637637
GCC_WARN_UNUSED_FUNCTION = YES;
638638
GCC_WARN_UNUSED_VARIABLE = YES;
639-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
639+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
640640
MTL_ENABLE_DEBUG_INFO = NO;
641641
SDKROOT = iphoneos;
642642
SUPPORTED_PLATFORMS = iphoneos;

lib/main.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ void main() async {
1414
initializeDateFormatting('fr_FR', null).then((_) {
1515
runApp(
1616
ProviderScope(
17+
// Never retry any provider
18+
retry: (retryCount, error) => null,
1719
child: TvProgram(
1820
packageInfo: packageInfo,
1921
homePage: homePage,

lib/providers/channel_programs_provider.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'package:flutter_riverpod/flutter_riverpod.dart';
21
import 'package:riverpod_annotation/riverpod_annotation.dart';
32
import 'package:tv_program/models/program.dart';
43
import 'package:tv_program/providers/service_provider.dart';

lib/providers/channel_programs_provider.g.dart

Lines changed: 51 additions & 127 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/providers/channels_provider.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import 'package:flutter_riverpod/flutter_riverpod.dart';
21
import 'package:riverpod_annotation/riverpod_annotation.dart';
32
import 'package:tv_program/models/channel.dart';
43
import 'package:tv_program/providers/selected_program.dart';

lib/providers/channels_provider.g.dart

Lines changed: 34 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)