File tree Expand file tree Collapse file tree 7 files changed +21
-19
lines changed Expand file tree Collapse file tree 7 files changed +21
-19
lines changed Original file line number Diff line number Diff line change
1
+ # 0.4.1
2
+
3
+ * Bumps Android dependencies (Kotlin, AGP, workmanager 2.5.0)
4
+ * Android: Remove jcenter reference
5
+ * Android: Build using compile/target SDK 30.
6
+
1
7
# 0.4.0
2
8
3
9
* The package now supports null-safety
Original file line number Diff line number Diff line change @@ -2,30 +2,30 @@ group 'be.tramckrijte.workmanager'
2
2
version ' 1.0-SNAPSHOT'
3
3
4
4
buildscript {
5
- ext. kotlin_version = ' 1.4.21 '
5
+ ext. kotlin_version = ' 1.5.10 '
6
6
repositories {
7
7
google()
8
- jcenter ()
8
+ mavenCentral ()
9
9
}
10
10
11
11
dependencies {
12
- classpath ' com.android.tools.build:gradle:3.5.4 '
12
+ classpath ' com.android.tools.build:gradle:4.2.1 '
13
13
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
14
14
}
15
15
}
16
16
17
17
rootProject. allprojects {
18
18
repositories {
19
+ mavenCentral()
19
20
google()
20
- jcenter()
21
21
}
22
22
}
23
23
24
24
apply plugin : ' com.android.library'
25
25
apply plugin : ' kotlin-android'
26
26
27
27
android {
28
- compileSdkVersion 28
28
+ compileSdkVersion 30
29
29
30
30
sourceSets {
31
31
main. java. srcDirs + = ' src/main/kotlin'
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android'
26
26
apply from : " $flutterRoot /packages/flutter_tools/gradle/flutter.gradle"
27
27
28
28
android {
29
- compileSdkVersion 28
29
+ compileSdkVersion 30
30
30
31
31
sourceSets {
32
32
main. java. srcDirs + = ' src/main/kotlin'
@@ -39,7 +39,7 @@ android {
39
39
defaultConfig {
40
40
applicationId " be.tramckrijte.workmanager_example"
41
41
minSdkVersion 16
42
- targetSdkVersion 28
42
+ targetSdkVersion 30
43
43
versionCode flutterVersionCode. toInteger()
44
44
versionName flutterVersionName
45
45
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext. kotlin_version = ' 1.4.21 '
2
+ ext. kotlin_version = ' 1.5.10 '
3
3
repositories {
4
4
google()
5
- jcenter ()
5
+ mavenCentral ()
6
6
}
7
7
8
8
dependencies {
9
- classpath ' com.android.tools.build:gradle:3.5.4 '
9
+ classpath ' com.android.tools.build:gradle:4.2.1 '
10
10
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
11
11
}
12
12
}
13
13
14
14
allprojects {
15
15
repositories {
16
16
google()
17
- jcenter ()
17
+ mavenCentral ()
18
18
}
19
19
}
20
20
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-5.4 .1-all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.7 .1-all.zip
Original file line number Diff line number Diff line change @@ -6,15 +6,11 @@ environment:
6
6
sdk : " >=2.12.0-0 <3.0.0"
7
7
8
8
dependencies :
9
- path_provider : ^2.0.1
10
- shared_preferences : ^2.0.5
9
+ path_provider : ^2.0.2
10
+ shared_preferences : ^2.0.6
11
11
flutter :
12
12
sdk : flutter
13
13
14
- # The following adds the Cupertino Icons font to your application.
15
- # Use with the CupertinoIcons class for iOS style icons.
16
- cupertino_icons : ^1.0.2
17
-
18
14
dev_dependencies :
19
15
flutter_test :
20
16
sdk : flutter
Original file line number Diff line number Diff line change 1
1
name : workmanager
2
2
description : Flutter Workmanager. This plugin allows you to schedule background work on Android and iOS.
3
- version : 0.4.0
3
+ version : 0.4.1
4
4
homepage : https://github.com/fluttercommunity/flutter_workmanager
5
5
repository : https://github.com/fluttercommunity/flutter_workmanager
6
6
issue_tracker : https://github.com/fluttercommunity/flutter_workmanager/issues
You can’t perform that action at this time.
0 commit comments