From 87d9414bf0c4f2a830a83bdbbd1b74762f352a20 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Tue, 31 Oct 2023 04:41:05 -0700 Subject: [PATCH] Bump target SDK to 34 (#5246) Summary: [android] Bump target SDK to 34 Changelog: Android SDK is now built against SDK 34 Pull Request resolved: https://github.com/facebook/flipper/pull/5246 Test Plan: --- Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/flipper/pull/5246). * https://github.com/facebook/flipper/issues/5252 * https://github.com/facebook/flipper/issues/5247 * __->__ https://github.com/facebook/flipper/issues/5246 * https://github.com/facebook/flipper/issues/5245 Reviewed By: mweststrate Differential Revision: D50599215 Pulled By: passy fbshipit-source-id: a9883fdbab7bdd06a63a2949e1502a7854299752 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 109b8d1bf..1cb548ff4 100644 --- a/build.gradle +++ b/build.gradle @@ -49,8 +49,8 @@ subprojects { ext { minSdkVersion = 15 - targetSdkVersion = 33 - compileSdkVersion = 33 + targetSdkVersion = 34 + compileSdkVersion = 34 buildToolsVersion = "33.0.2" ndkVersion = "25.1.8937393" javaTargetVersion = JavaVersion.VERSION_17