From ae52b680f54a6e417de40060745cd75e4c3203c1 Mon Sep 17 00:00:00 2001 From: CakesTwix Date: Sat, 15 Feb 2025 18:14:54 +0200 Subject: [PATCH] gradle: hotfix: Addded makePluginsJson to apkTasks --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2cec2af..4c188d9 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -60,7 +60,7 @@ subprojects { val apk by configurations val implementation by configurations val libs = rootProject.libs - val apkTasks = listOf("deployWithAdb", "build") + val apkTasks = listOf("deployWithAdb", "build", "makePluginsJson") val useApk = gradle.startParameter.taskNames.any { taskName -> apkTasks.any { apkTask -> taskName.contains(apkTask, ignoreCase = true)