File tree 5 files changed +17
-8
lines changed
5 files changed +17
-8
lines changed Original file line number Diff line number Diff line change
1
+ ## Unreleased
2
+
3
+ - Dependencies update (#990 )
4
+ - ** Bump minimum Flutter to 3.27**
5
+ - Update leancode_lint and fix all new warnings
6
+ - Bump Gradle to 8.8
7
+ - Bump Kotlin to 2.1.0
8
+
1
9
## 1.11.8
2
10
3
11
- Allow nullable Content-Yype (#966 )
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ buildscript {
9
9
}
10
10
11
11
dependencies {
12
- classpath " com.android.tools.build:gradle:7.4.2 "
13
- classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:1.9 .0"
14
- classpath " org.jlleitschuh.gradle:ktlint-gradle:11.5.0 "
12
+ classpath " com.android.tools.build:gradle:8.8.0 "
13
+ classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:2.1 .0"
14
+ classpath " org.jlleitschuh.gradle:ktlint-gradle:12.1.2 "
15
15
}
16
16
}
17
17
Original file line number Diff line number Diff line change 9
9
///
10
10
/// * author: hunghd
11
11
12
-
13
- library flutter_downloader;
12
+ library ;
14
13
15
14
export 'src/downloader.dart' ;
16
15
export 'src/exceptions.dart' ;
Original file line number Diff line number Diff line change
1
+ // In some cases, it's hard to get around calls on 'dynamic'.
1
2
// ignore_for_file: avoid_dynamic_calls
2
3
3
4
import 'dart:async' ;
@@ -438,6 +439,7 @@ class FlutterDownloader {
438
439
/// Prints [message] to console if [_debug] is true.
439
440
static void _log (String ? message) {
440
441
if (_debug) {
442
+ // Using print here seeems good enough.
441
443
// ignore: avoid_print
442
444
print (message);
443
445
}
Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ flutter:
15
15
pluginClass : FlutterDownloaderPlugin
16
16
17
17
environment :
18
- sdk : " >=3.3 .0 <4.0.0"
19
- flutter : " >=3.19 .0"
18
+ sdk : " >=3.6 .0 <4.0.0"
19
+ flutter : " >=3.27 .0"
20
20
21
21
dependencies :
22
22
flutter :
@@ -25,4 +25,4 @@ dependencies:
25
25
dev_dependencies :
26
26
flutter_test :
27
27
sdk : flutter
28
- leancode_lint : ^12.1 .0
28
+ leancode_lint : ^15.0 .0
You can’t perform that action at this time.
0 commit comments