22 lines
437 B
Kotlin
22 lines
437 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "ElmerClient"
|
|
include(":app")
|
|
include(":library")
|
|
|
|
// AndrOBD library submodule
|
|
project(":library").projectDir = file("AndrOBD/library")
|