File tree Expand file tree Collapse file tree 9 files changed +16
-12
lines changed Expand file tree Collapse file tree 9 files changed +16
-12
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.4.3 - 28-03-2024
2
+ - Updated targetSdkVersion to 34 and added FOREGROUND_SERVICE_LOCATION for support Android 14
3
+ - Removed unrecognized_error_code from analysis_options.yaml
4
+
1
5
## 1.4.2 - 11-09-2023
2
6
- Added fromJson/toJson/toString/equals/copyWith methods in BackgroundLocationUpdateData
3
7
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ analyzer:
3
3
missing_required_param : error
4
4
missing_return : error
5
5
todo : ignore
6
- sdk_version_async_exported_from_core : ignore
7
6
language :
8
7
strict-casts : false
9
8
strict-raw-types : false
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ group 'com.icapps.background_location_tracker'
2
2
version ' 1.0-SNAPSHOT'
3
3
4
4
buildscript {
5
- ext. kotlin_version = ' 1.6.0 '
5
+ ext. kotlin_version = ' 1.9.10 '
6
6
repositories {
7
7
google()
8
8
mavenCentral()
9
9
}
10
10
11
11
dependencies {
12
- classpath ' com.android.tools.build:gradle:7.0.3 '
12
+ classpath ' com.android.tools.build:gradle:7.3.1 '
13
13
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
14
14
}
15
15
}
@@ -25,14 +25,14 @@ apply plugin: 'com.android.library'
25
25
apply plugin : ' kotlin-android'
26
26
27
27
android {
28
- compileSdkVersion 33
28
+ compileSdkVersion 34
29
29
30
30
sourceSets {
31
31
main. java. srcDirs + = ' src/main/kotlin'
32
32
}
33
33
defaultConfig {
34
34
minSdkVersion 16
35
- targetSdkVersion 33
35
+ targetSdkVersion 34
36
36
}
37
37
lintOptions {
38
38
disable ' InvalidPackage'
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
3
zipStoreBase =GRADLE_USER_HOME
4
4
zipStorePath =wrapper/dists
5
- distributionUrl =https\://services.gradle.org/distributions/gradle-7.0.2 -all.zip
5
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.4 -all.zip
Original file line number Diff line number Diff line change 3
3
4
4
<uses-permission android : name =" android.permission.ACCESS_BACKGROUND_LOCATION" />
5
5
<uses-permission android : name =" android.permission.FOREGROUND_SERVICE" />
6
+ <uses-permission android : name =" android.permission.FOREGROUND_SERVICE_LOCATION" />
6
7
<uses-permission android : name =" android.permission.WAKE_LOCK" />
7
8
<uses-permission android : name =" android.permission.ACCESS_FINE_LOCATION" />
8
9
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 33
29
+ compileSdkVersion 34
30
30
31
31
sourceSets {
32
32
main. java. srcDirs + = ' src/main/kotlin'
@@ -40,7 +40,7 @@ android {
40
40
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
41
41
applicationId " com.icapps.background_location_tracker_example"
42
42
minSdkVersion 16
43
- targetSdkVersion 33
43
+ targetSdkVersion 34
44
44
versionCode flutterVersionCode. toInteger()
45
45
versionName flutterVersionName
46
46
}
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext. kotlin_version = ' 1.7.0 '
2
+ ext. kotlin_version = ' 1.9.10 '
3
3
repositories {
4
4
google()
5
5
mavenCentral()
6
6
}
7
7
8
8
dependencies {
9
- classpath ' com.android.tools.build:gradle:7.0.4 '
9
+ classpath ' com.android.tools.build:gradle:7.3.1 '
10
10
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
11
11
}
12
12
}
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-7.0.2 -all.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.4 -all.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 1
1
name : background_location_tracker
2
2
description : A Flutter plugin that allows you to track the background location for Android & iOS
3
3
repository : https://github.com/icapps/flutter-background-location-tracker
4
- version : 1.4.2
4
+ version : 1.4.3
5
5
6
6
environment :
7
7
sdk : " >=2.12.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments