From 9c73223cadae3609e13aab7b031898f65366fa8a Mon Sep 17 00:00:00 2001 From: Yogesh Date: Wed, 2 Oct 2024 11:21:54 +0530 Subject: [PATCH 1/2] Fix#463 --- .github/workflows/update-gradle-wrapper.yml | 2 +- build.gradle | 2 +- serviceLibrary/build.gradle | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-gradle-wrapper.yml b/.github/workflows/update-gradle-wrapper.yml index da4f7b35..5d197e08 100644 --- a/.github/workflows/update-gradle-wrapper.yml +++ b/.github/workflows/update-gradle-wrapper.yml @@ -16,7 +16,7 @@ jobs: distribution: 'adopt' java-version: 17 - name: Update Gradle Wrapper - uses: gradle-update/update-gradle-wrapper-action@v1 + uses: gradle-update/update-gradle-wrapper-action@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} set-distribution-checksum: false diff --git a/build.gradle b/build.gradle index c5115dac..36cec84b 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ buildscript { maven { url "https://plugins.gradle.org/m2/" } } dependencies { - classpath 'com.android.tools.build:gradle:8.6.0' + classpath 'com.android.tools.build:gradle:8.5.2' classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jlleitschuh.gradle:ktlint-gradle:12.1.1" diff --git a/serviceLibrary/build.gradle b/serviceLibrary/build.gradle index b58f1c5c..b6eff51d 100644 --- a/serviceLibrary/build.gradle +++ b/serviceLibrary/build.gradle @@ -59,6 +59,8 @@ dependencies { implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation "androidx.core:core-ktx:1.13.1" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0" + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0" + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" implementation "androidx.work:work-runtime-ktx:2.9.1" implementation "com.github.AppDevNext.Logcat:LogcatCoreLib:$logcatVersion" From eb92e6b660dc26f4b2947d594a83b3f9067793d0 Mon Sep 17 00:00:00 2001 From: Yogesh Date: Wed, 2 Oct 2024 15:15:31 +0530 Subject: [PATCH 2/2] Update build.gradle --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 36cec84b..c5115dac 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ buildscript { maven { url "https://plugins.gradle.org/m2/" } } dependencies { - classpath 'com.android.tools.build:gradle:8.5.2' + classpath 'com.android.tools.build:gradle:8.6.0' classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jlleitschuh.gradle:ktlint-gradle:12.1.1"