
I didn't fully keep track of what I did this time, mostly since I was busy wrangling some of the insane build issues from this gradle update.
22 lines
No EOL
466 B
Groovy
22 lines
No EOL
466 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
gradle.ext.androidxMediaModulePrefix = 'media-'
|
|
gradle.ext.androidxMediaProjectName = 'media-'
|
|
apply from: file("media/core_settings.gradle")
|
|
|
|
rootProject.name = "Auxio"
|
|
include ':app' |