From fc42d64bba23c63e68e776583305385f78234224 Mon Sep 17 00:00:00 2001 From: Miguel Matey Sanz Date: Tue, 3 Sep 2024 10:43:04 +0200 Subject: [PATCH 1/4] chore: add foreground service type in manifest --- backgroundsensors/src/main/AndroidManifest.xml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/backgroundsensors/src/main/AndroidManifest.xml b/backgroundsensors/src/main/AndroidManifest.xml index 2ccb173..b09f0d0 100644 --- a/backgroundsensors/src/main/AndroidManifest.xml +++ b/backgroundsensors/src/main/AndroidManifest.xml @@ -5,9 +5,21 @@ + - - + + + + + + + \ No newline at end of file From ee7f5a35a9467dc74cb8b6255cdc143c380755c5 Mon Sep 17 00:00:00 2001 From: Miguel Matey Sanz Date: Tue, 3 Sep 2024 10:44:10 +0200 Subject: [PATCH 2/4] chore: bump sdk to 34 and new minor version --- app/build.gradle | 4 ++-- backgroundsensors/build.gradle | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index c471cf8..6133e7d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -3,12 +3,12 @@ plugins { } android { - compileSdk 33 + compileSdk 34 defaultConfig { applicationId "es.uji.geotec.backgroundsensors" minSdk 24 - targetSdk 33 + targetSdk 34 versionCode 1 versionName "1.0" diff --git a/backgroundsensors/build.gradle b/backgroundsensors/build.gradle index d1c497c..4d13842 100644 --- a/backgroundsensors/build.gradle +++ b/backgroundsensors/build.gradle @@ -5,11 +5,11 @@ plugins { } android { - compileSdk 33 + compileSdk 34 defaultConfig { minSdk 21 - targetSdk 33 + targetSdk 34 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" From 0c675e832b5a2b1d4095971be3d9aa0720a06e24 Mon Sep 17 00:00:00 2001 From: Miguel Matey Sanz Date: Tue, 3 Sep 2024 10:46:44 +0200 Subject: [PATCH 3/4] docs: refer to updated version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bde0766..2b3bfcd 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ To install the library you have to add the dependency in your `build.gradle`: ```groovy dependencies { - implementation 'io.github.geotecinit:background-sensors:1.3.0' + implementation 'io.github.geotecinit:background-sensors:1.4.0' } ``` From bc597abd208fca7617cd6c547627a4c26a7be69f Mon Sep 17 00:00:00 2001 From: Miguel Matey Sanz Date: Tue, 3 Sep 2024 10:58:46 +0200 Subject: [PATCH 4/4] chore: bump minor --- backgroundsensors/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backgroundsensors/build.gradle b/backgroundsensors/build.gradle index 4d13842..fc409dc 100644 --- a/backgroundsensors/build.gradle +++ b/backgroundsensors/build.gradle @@ -39,7 +39,7 @@ android { namespace 'es.uji.geotec.backgroundsensors' } -version = '1.3.0' +version = '1.4.0' ext.isReleaseVersion = !version.endsWith("SNAPSHOT") publishing {