Files
Weather-apps/settings.gradle
hmalik144 1fa34764df Test suite expansion (#20)
- Code inspection
 - Redundant resources removed
 - Resources moved the corresponding flavours
 - Deprecated dependencies upgraded
 - lint changes
 - circleci updated to capture screenshot
 - Testsuite expansion
2023-08-12 18:39:20 +01:00

24 lines
551 B
Groovy

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
jcenter()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://www.jitpack.io" }
jcenter()
maven {
url "https://repositories.tomtom.com/artifactory/maps-sdk-legacy-android"
}
}
}
rootProject.name = "Atlas Weather"
include ':app'
include ':test-resources'