settings.gradle.kts
author Da Risk <da_risk@geekorum.com>
Thu, 13 Apr 2023 19:36:46 -0400
changeset 5 448854642714
parent 4 3d88feb1156b
child 14 bb30a0b89177
permissions -rw-r--r--
ui:material: Add activity in manifest and allow to configure the theme used

pluginManagement {
    repositories {
        google()
        mavenCentral()
        gradlePluginPortal()
    }
}
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        // for geekdroid
        maven {
            url = uri("https://jitpack.io")
        }
    }
}

rootProject.name = "AboutOss"
include(":core")
include(":ui:common")
include(":ui:material2")