From f0f9c25ad5d1a7be77d616924fae556bfda57e78 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Wed, 17 Jan 2024 10:58:52 +0100 Subject: [PATCH 1/2] Upgrade default compile and target sdk version to API 34 --- build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 7634acd..deea53c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -22,9 +22,9 @@ plugins { id("com.automattic.android.publish-to-s3") apply false } -val defaultCompileSdkVersion = 33 +val defaultCompileSdkVersion = 34 val defaultMinSdkVersion = 24 -val defaultTargetSdkVersion = 33 +val defaultTargetSdkVersion = 34 val excludeAppGlideModule = true // Set project extra properties From a561c72490533c0bad629ec56bf1d22f514da225 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Date: Wed, 17 Jan 2024 10:59:06 +0100 Subject: [PATCH 2/2] Bump publisher version to v4 --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index deea53c..7647d02 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,7 +15,7 @@ import org.json.JSONObject // Although this allows different clients to use different artifacts, since we only have one client // this is now the most important use case for this implementation. Instead, this implementation // aims to make it easier to test publisher changes without having to override the artifacts. -val publisherVersion = "v3" +val publisherVersion = "v4" plugins { id("com.android.library") apply false