From 7862fc07393702f20ce147ad829ff38319f508a6 Mon Sep 17 00:00:00 2001 From: Teodor G Date: Mon, 12 Apr 2021 11:26:17 +0300 Subject: [PATCH] added include statement instead of includeProject --- settings.gradle | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/settings.gradle b/settings.gradle index 2e662be..428124c 100644 --- a/settings.gradle +++ b/settings.gradle @@ -104,11 +104,15 @@ def includeProject(name, filePath, List filter = []) { } // Demo Project -includeProject(":demo", "demo") +//includeProject(":demo", "demo") +include ':demo' // Memo Components -includeProject(":memo", "memo") -includeProject(":memo-annotation", "memo-annotation") -includeProject(":memo-compiler", "memo-compiler") +//includeProject(":memo", "memo") +//includeProject(":memo-annotation", "memo-annotation") +//includeProject(":memo-compiler", "memo-compiler") +include ':memo' +include ':memo-annotation' +include ':memo-compiler' rootProject.name = "Memo" \ No newline at end of file