William Brawner
8447e36ee3
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
11 lines
325 B
Text
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")
|