nanoflux/settings.gradle.kts
William Brawner 8447e36ee3 Initial commit
The only changes I made after creating the project with a blank compose activity were to migrate the dependencies over to Gradle's new version catalog system
2021-05-09 12:42:28 -06:00

11 lines
325 B
Text

enableFeaturePreview("VERSION_CATALOGS")
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
rootProject.name = "Nanoflux"
include(":app")