From 59fd1f2244bf72a60372b7bca3da4bf639f24fda Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 20 May 2026 15:56:53 +0000 Subject: [PATCH] build: use directories.add for benchmark androidTest resources srcDirs(vararg) on AGP 9 source-set Resources is deprecated; switch to the directories MutableSet API. Preserves the original behavior of including quartz/src/androidDeviceTest/resources in :benchmark's androidTest java resources (verified bip39.vectors.json shows up in processBenchmarkAndroidTestJavaRes output). --- benchmark/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmark/build.gradle.kts b/benchmark/build.gradle.kts index 65b273b16..a9a062213 100644 --- a/benchmark/build.gradle.kts +++ b/benchmark/build.gradle.kts @@ -28,7 +28,7 @@ android { sourceSets { getByName("androidTest") { - resources.srcDirs("../quartz/src/androidDeviceTest/resources") + resources.directories.add(file("../quartz/src/androidDeviceTest/resources").path) } }