From 68f7f893fac4b53895ae172e12884ed9fdcf02b6 Mon Sep 17 00:00:00 2001 From: Mike Hardy Date: Wed, 10 Apr 2024 14:17:15 -0500 Subject: [PATCH] build(deps, android): bump android SDK compile / target to current these and the android plugin change should be overridden by project config, but if not, they are current now --- android/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 0d3fd9b..0e333d6 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -12,7 +12,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:7.3.0' + classpath 'com.android.tools.build:gradle:8.3.2' } } } @@ -20,10 +20,10 @@ buildscript { apply plugin: 'com.android.library' android { - compileSdkVersion safeExtGet('compileSdkVersion', 33) + compileSdkVersion safeExtGet('compileSdkVersion', 34) defaultConfig { minSdkVersion safeExtGet('minSdkVersion', 16) - targetSdkVersion safeExtGet('targetSdkVersion', 31) + targetSdkVersion safeExtGet('targetSdkVersion', 34) } lintOptions { abortOnError false