From 8b7f6303c84317196eee96b8d986a55ed632bc1c Mon Sep 17 00:00:00 2001 From: Simon Marquis Date: Sun, 9 Jul 2023 10:06:25 +0100 Subject: [PATCH] Align `targetSdk` to 34 in `AndroidTestConventionPlugin.kt` Initial update was applied in https://github.com/android/nowinandroid/pull/814 --- .../convention/src/main/kotlin/AndroidTestConventionPlugin.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-logic/convention/src/main/kotlin/AndroidTestConventionPlugin.kt b/build-logic/convention/src/main/kotlin/AndroidTestConventionPlugin.kt index 286871010..e48d75757 100644 --- a/build-logic/convention/src/main/kotlin/AndroidTestConventionPlugin.kt +++ b/build-logic/convention/src/main/kotlin/AndroidTestConventionPlugin.kt @@ -31,10 +31,10 @@ class AndroidTestConventionPlugin : Plugin { extensions.configure { configureKotlinAndroid(this) - defaultConfig.targetSdk = 31 + defaultConfig.targetSdk = 34 configureGradleManagedDevices(this) } } } -} \ No newline at end of file +}