From abae3a6237894cd0b68faca752a0891c4a9a0bb1 Mon Sep 17 00:00:00 2001 From: "Wei.He" Date: Wed, 6 Dec 2023 12:03:35 +0800 Subject: [PATCH] chore(build): Change project name to lowercase to fix sync issue on initial clone (#21) - Rename the project from 'PicQuest' to 'picquest' to resolve a case sensitivity issue that was preventing the project from syncing correctly when cloned for the first time. --- settings.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.gradle.kts b/settings.gradle.kts index 0648db4..f9705cf 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -15,7 +15,7 @@ dependencyResolutionManagement { } } -rootProject.name = "PicQuest" +rootProject.name = "picquest" include(":app") include(":core:designsystem")