Skip to content

Commit

Permalink
added include statement instead of includeProject
Browse files Browse the repository at this point in the history
  • Loading branch information
teogor committed Apr 12, 2021
1 parent 2b86bba commit 7862fc0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,15 @@ def includeProject(name, filePath, List<BuildType> 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"

0 comments on commit 7862fc0

Please sign in to comment.