Repo created
This commit is contained in:
parent
d6b5d53060
commit
d90a1dc8df
2145 changed files with 210227 additions and 2 deletions
46
settings.gradle.kts
Normal file
46
settings.gradle.kts
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
pluginManagement {
|
||||
resolutionStrategy {
|
||||
eachPlugin {
|
||||
val regex = "com.android.(library|application)".toRegex()
|
||||
if (regex matches requested.id.id) {
|
||||
useModule("com.android.tools.build:gradle:${requested.version}")
|
||||
}
|
||||
if (requested.id.id == "dagger.hilt.android.plugin") {
|
||||
useModule("com.google.dagger:hilt-android-gradle-plugin:${requested.version}")
|
||||
}
|
||||
}
|
||||
}
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
google()
|
||||
mavenCentral()
|
||||
maven(url = "https://www.jitpack.io")
|
||||
}
|
||||
}
|
||||
|
||||
dependencyResolutionManagement {
|
||||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||
repositories {
|
||||
mavenCentral()
|
||||
google()
|
||||
maven(url = "https://www.jitpack.io")
|
||||
}
|
||||
}
|
||||
|
||||
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
||||
|
||||
rootProject.name = "BreezyWeather"
|
||||
include(":app")
|
||||
include(":data")
|
||||
include(":domain")
|
||||
include(":maps-utils")
|
||||
include(":ui-weather-view")
|
||||
include(":weather-unit")
|
||||
|
||||
// To test local changes
|
||||
/*includeBuild("../breezy-weather-data-sharing-lib/") {
|
||||
dependencySubstitution {
|
||||
substitute(module("com.github.breezy-weather:breezy-weather-data-sharing-lib"))
|
||||
.using(project(":lib"))
|
||||
}
|
||||
}*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue