File tree 5 files changed +7
-7
lines changed
src/main/kotlin/vn/hunghd/flutterdownloader
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ apply plugin: "org.jlleitschuh.gradle.ktlint"
26
26
27
27
android {
28
28
namespace = " vn.hunghd.flutterdownloader"
29
- compileSdk = 34
29
+ compileSdk = 35
30
30
31
31
compileOptions {
32
32
sourceCompatibility JavaVersion . VERSION_1_8
@@ -45,7 +45,7 @@ android {
45
45
46
46
defaultConfig {
47
47
minSdk = 21
48
- targetSdk = 34
48
+ targetSdk = 35
49
49
}
50
50
}
51
51
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ class TaskDao(private val dbHelper: TaskDbHelper) {
93
93
94
94
fun loadTasksWithRawQuery (query : String? ): List <DownloadTask > {
95
95
val db = dbHelper.readableDatabase
96
- val cursor = db.rawQuery(query, null )
96
+ val cursor = db.rawQuery(query!! , null )
97
97
val result: MutableList <DownloadTask > = ArrayList ()
98
98
while (cursor.moveToNext()) {
99
99
result.add(parseCursor(cursor))
Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ if (flutterVersionName == null) {
24
24
25
25
android {
26
26
namespace = " vn.hunghd.example"
27
- compileSdk = 34
27
+ compileSdk = 35
28
28
ndkVersion = flutter. ndkVersion
29
29
30
30
defaultConfig {
31
31
applicationId " vn.hunghd.example"
32
32
minSdk = 21
33
- targetSdk = 34
33
+ targetSdk = 35
34
34
versionCode = flutterVersionCode. toInteger()
35
35
versionName = flutterVersionName
36
36
}
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.7 -all.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.9 -all.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ pluginManagement {
18
18
19
19
plugins {
20
20
id(" dev.flutter.flutter-plugin-loader" )
21
- id(" com.android.application" ) version (" 8.3.1 " ) apply false
21
+ id(" com.android.application" ) version (' 8.7.2 ' ) apply false
22
22
id(" org.jetbrains.kotlin.android" ) version (" 1.9.23" ) apply false
23
23
}
24
24
You can’t perform that action at this time.
0 commit comments