From 1461f048ddb627f2e62cf3d2e95befd38e6bc919 Mon Sep 17 00:00:00 2001 From: Ahmad Ansori Palembani Date: Wed, 1 Jan 2025 07:44:09 +0700 Subject: [PATCH] fix: Resolve deprecated gradle function --- app/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 1c987b5cc1..0d1f72e1d2 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -23,7 +23,7 @@ if (gradle.startParameter.taskRequests.toString().contains("standard", true)) { fun runCommand(command: String): String { val byteOut = ByteArrayOutputStream() - project.exec { + providers.exec { commandLine = command.split(" ") standardOutput = byteOut }