File tree 3 files changed +15
-2
lines changed
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.10.4
2
+
3
+ - Fix Android build failing because of JVM and Kotlin target source
4
+ compatibility (#862 )
5
+
1
6
## 1.10.3
2
7
3
8
- Fix Android build failing when using Android Gradle Plugin v8 (#857 )
Original file line number Diff line number Diff line change @@ -28,9 +28,17 @@ rootProject.allprojects {
28
28
}
29
29
30
30
android {
31
+ namespace " vn.hunghd.flutterdownloader"
31
32
compileSdk 32
32
33
33
- namespace " vn.hunghd.flutterdownloader"
34
+ compileOptions {
35
+ sourceCompatibility JavaVersion . VERSION_1_8
36
+ targetCompatibility JavaVersion . VERSION_1_8
37
+ }
38
+
39
+ kotlinOptions {
40
+ jvmTarget = " 1.8"
41
+ }
34
42
35
43
sourceSets {
36
44
main. java. srcDirs + = " src/main/kotlin"
Original file line number Diff line number Diff line change 1
1
name : flutter_downloader
2
2
description : Powerful plugin making it easy to download files.
3
- version : 1.10.3
3
+ version : 1.10.4
4
4
repository : https://github.com/fluttercommunity/flutter_downloader
5
5
issue_tracker : https://github.com/fluttercommunity/flutter_downloader/issues
6
6
maintainer : Bartek Pacia (@bartekpacia)
You can’t perform that action at this time.
0 commit comments