File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
Expand file tree Collapse file tree 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+
16## 1.10.3
27
38- 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 {
2828}
2929
3030android {
31+ namespace " vn.hunghd.flutterdownloader"
3132 compileSdk 32
3233
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+ }
3442
3543 sourceSets {
3644 main. java. srcDirs + = " src/main/kotlin"
Original file line number Diff line number Diff line change 11name : flutter_downloader
22description : Powerful plugin making it easy to download files.
3- version : 1.10.3
3+ version : 1.10.4
44repository : https://github.com/fluttercommunity/flutter_downloader
55issue_tracker : https://github.com/fluttercommunity/flutter_downloader/issues
66maintainer : Bartek Pacia (@bartekpacia)
You can’t perform that action at this time.
0 commit comments