This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include ':app' | |
include ':stdlib_kotlin' | |
project(':stdlib_kotlin').projectDir = new File(settingsDir, './Stdlib_kotlin_android/stdlib_kotlin') | |
include ':stdlib_android' | |
project(':stdlib_android').projectDir = new File(settingsDir, './Stdlib_kotlin_android/stdlib_android') | |
include ':awesome_core' | |
project(':awesome_core').projectDir = new File(settingsDir, '../../workspace/Awesome_core/lib') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ONLY the library modules go here | |
include ':stdlib_kotlin', ':stdlib_android'//, ':stdlib_realm' | |
// some gradle magic | |
rootProject.children.each { project -> | |
String relativeProjectPath = project.projectDir.path.replace(settingsDir.path, "") | |
project.projectDir = new File("Stdlib_kotlin_android/$relativeProjectPath") | |
} | |
// new project modules go here |