From 606e14552de8cdb7cf18d54f2da79de6dc93255b Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Fri, 18 Aug 2023 03:07:41 -0700 Subject: [PATCH] Set android.suppressUnsupportedCompileSdk=34 for the root project Summary: Android is currently raising a warning as we're using AGP 8.1 with SDK 34. I'm suppressing this warning that we can remove once we bump to AGP 8.2 Changelog: [Internal] [Changed] - Set android.suppressUnsupportedCompileSdk=34 for the root project Reviewed By: mdvacca Differential Revision: D48437747 fbshipit-source-id: 6d2ed5f4f021052934206fd9149c048cdd5350df --- gradle.properties | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gradle.properties b/gradle.properties index 12a6bcebf8b..e55fdd0853a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,6 +4,9 @@ org.gradle.caching=true android.useAndroidX=true +# Can be removed once we bump to AGP 8.2.0 +android.suppressUnsupportedCompileSdk=34 + # Use this property to specify which architecture you want to build. # You can also override it from the CLI using # ./gradlew -PreactNativeArchitectures=x86_64