From 29ce600cb86a23c343c56aed7b8a18fa00db40b4 Mon Sep 17 00:00:00 2001 From: "dima.avdeev" <99798741+dima-avdeev-jb@users.noreply.github.com> Date: Wed, 3 May 2023 17:29:54 +0300 Subject: [PATCH] fix iOS build with multiple modules (#14) Describe problem here https://github.com/dima-avdeev-jb/kotlin-gradle-plugin-ios-root-project-name-with-space --- settings.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.gradle.kts b/settings.gradle.kts index d453d2a..85648e3 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,4 +1,4 @@ -rootProject.name = "My application" +rootProject.name = "MyApplication" include(":androidApp") include(":shared")