Initial commit

This commit is contained in:
2021-02-22 01:30:47 +06:00
commit e6764197d3
20 changed files with 780 additions and 0 deletions

16
settings.gradle Normal file
View File

@@ -0,0 +1,16 @@
rootProject.name = 'project_name'
String[] includes = [
":lib"
]
includes.each { originalName ->
String projectDirectory = "${rootProject.projectDir.getAbsolutePath()}${originalName.replaceAll(":", File.separator)}"
String projectName = "${rootProject.name}${originalName.replaceAll(":", ".")}"
String projectIdentifier = ":${projectName}"
include projectIdentifier
ProjectDescriptor project = project(projectIdentifier)
project.name = projectName
project.projectDir = new File(projectDirectory)
}