mirror of
https://github.com/hmalik144/Weather-apps.git
synced 2025-12-10 02:05:20 +00:00
- Code inspection - Redundant resources removed - Resources moved the corresponding flavours - Deprecated dependencies upgraded - lint changes - circleci updated to capture screenshot - Testsuite expansion
24 lines
551 B
Groovy
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'
|