From f9140c9695576b59226421d8b7ba11737d493831 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ros=C3=A1rio=20P=2E=20Fernandes?= Date: Thu, 8 Aug 2024 14:46:23 +0100 Subject: [PATCH] update Android SDK to API level 35 (#192) --- fix_android_dependencies.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fix_android_dependencies.py b/fix_android_dependencies.py index e2caaa5..ba5dba0 100644 --- a/fix_android_dependencies.py +++ b/fix_android_dependencies.py @@ -4,9 +4,9 @@ # These will have to be updated manually over time, there's not an # easy way to determine the latest version. -COMPILE_SDK_VERSION = 34 -TARGET_SDK_VERSION = 34 -BUILD_TOOLS_VERSION = '34.0.0' +COMPILE_SDK_VERSION = 35 +TARGET_SDK_VERSION = 35 +BUILD_TOOLS_VERSION = '35.0.0' # build.gradle(.kts) files COMPILE_SDK_RE = r'compileSdk(?:Version)?\s*=?\s*[\w]+'