From 45670e28714869cc9d4a05e33b3fff02f5f0653f Mon Sep 17 00:00:00 2001 From: Stef Tervelde Date: Wed, 15 Oct 2025 14:29:20 +0200 Subject: [PATCH] Fix duplicate include for app:utils module Removed redundant 'include("app:utils")' statement and added 'app:utils' to the main include block for consistency. --- settings.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings.gradle.kts b/settings.gradle.kts index 8f8cb74c7f..7eacb06877 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -3,6 +3,7 @@ include( "core", "core:examples", "app", + "app:utils", "java", "java:preprocessor", "java:libraries:dxf", @@ -11,5 +12,4 @@ include( "java:libraries:pdf", "java:libraries:serial", "java:libraries:svg", -) -include("app:utils") \ No newline at end of file +) \ No newline at end of file