2022-07-24 09:59:02 +08:00
|
|
|
plugins {
|
2025-01-08 20:37:23 +04:00
|
|
|
id "com.gradle.develocity" version "3.19"
|
2022-07-24 09:59:02 +08:00
|
|
|
}
|
|
|
|
|
2025-01-08 20:37:23 +04:00
|
|
|
develocity {
|
2022-07-24 09:59:02 +08:00
|
|
|
buildScan {
|
2025-01-08 20:37:23 +04:00
|
|
|
termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use")
|
|
|
|
termsOfUseAgree.set("yes")
|
|
|
|
publishing.onlyIf { false }
|
2022-07-24 09:59:02 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-11 01:21:51 +05:30
|
|
|
dependencyResolutionManagement {
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
}
|
|
|
|
}
|
2022-07-24 09:59:02 +08:00
|
|
|
|
2020-05-14 20:17:36 +05:30
|
|
|
include ':app', ':appthemehelper'
|