From 3dfb34646f0943bef465461dcb220cf4639011a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Mon, 20 Apr 2026 11:17:54 -0600 Subject: [PATCH] Android: Upgrade protobuf dependency to 0.10.0 This lets use set newDsl=true in gradle.properties, which makes us complaint with future gradle versions, so no more need to worry about that for the foreseeable future. --- build.gradle.kts | 2 +- gradle.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 47b6e3d590..04596e5212 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,4 +1,4 @@ plugins { id("com.android.application") version "9.1.1" apply false - id("com.google.protobuf") version "0.9.6" apply false + id("com.google.protobuf") version "0.10.0" apply false } diff --git a/gradle.properties b/gradle.properties index 5620185eb6..32a7c06290 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,4 +4,4 @@ android.nonTransitiveRClass=true android.nonFinalResIds=true # This suppression is only needed for the legacy build. android.ndk.suppressMinSdkVersionError=21 -android.newDsl=false +android.newDsl=true