From 508df05f0dc74b33ac4886472257580e1c4d0029 Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Fri, 12 Jan 2024 22:49:14 -0800 Subject: [PATCH] Android Gradle Plugin 8.2.1 (#1548) Summary: We technically didn't need to be on the Beta before for NDK 26, but this bumps to the latest, non-prerelease version. Pull Request resolved: https://github.com/facebook/yoga/pull/1548 Reviewed By: christophpurrer Differential Revision: D52749378 Pulled By: NickGerleman fbshipit-source-id: c1940976e6b240aba2af5a2863f189280701ebd3 --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 3f96b2ae..63448f10 100644 --- a/build.gradle +++ b/build.gradle @@ -6,8 +6,8 @@ */ plugins { - id("com.android.library") version "8.2.0-beta06" apply false - id("com.android.application") version "8.2.0-beta06" apply false + id("com.android.library") version "8.2.1" apply false + id("com.android.application") version "8.2.1" apply false id("io.github.gradle-nexus.publish-plugin") version "1.3.0" }