mirror of
https://github.com/InsanusMokrassar/KSLog.git
synced 2025-09-15 13:09:26 +00:00
Initial commit
This commit is contained in:
18
settings.gradle
Normal file
18
settings.gradle
Normal file
@@ -0,0 +1,18 @@
|
||||
rootProject.name = 'project_name'
|
||||
|
||||
String[] includes = [
|
||||
":lib"
|
||||
]
|
||||
|
||||
|
||||
includes.each { originalName ->
|
||||
String projectDirectory = "${rootProject.projectDir.getAbsolutePath()}${originalName.replace(":", File.separator)}"
|
||||
String projectName = "${rootProject.name}${originalName.replace(":", ".")}"
|
||||
String projectIdentifier = ":${projectName}"
|
||||
include projectIdentifier
|
||||
ProjectDescriptor project = project(projectIdentifier)
|
||||
project.name = projectName
|
||||
project.projectDir = new File(projectDirectory)
|
||||
}
|
||||
|
||||
enableFeaturePreview("VERSION_CATALOGS")
|
Reference in New Issue
Block a user