Initial commit

This commit is contained in:
Akkihi
2022-06-07 13:17:21 +04:00
commit 45772e7376
22 changed files with 933 additions and 0 deletions

18
settings.gradle Normal file
View 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")