2022-09-05 09:23:10 +08:00
|
|
|
pluginManagement {
|
|
|
|
|
repositories {
|
2023-11-15 15:39:59 +08:00
|
|
|
google {
|
|
|
|
|
content {
|
2024-06-14 15:09:18 +08:00
|
|
|
includeGroupByRegex("com\\.android.*")
|
|
|
|
|
includeGroupByRegex("com\\.google.*")
|
|
|
|
|
includeGroupByRegex("androidx.*")
|
2023-11-15 15:39:59 +08:00
|
|
|
}
|
|
|
|
|
}
|
2022-10-06 15:44:49 +08:00
|
|
|
gradlePluginPortal()
|
2022-09-05 09:23:10 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-10 17:37:14 +08:00
|
|
|
// https://docs.gradle.com/enterprise/gradle-plugin/
|
|
|
|
|
plugins {
|
2025-12-10 18:04:34 +00:00
|
|
|
id "com.gradle.develocity" version "4.3"
|
2022-08-10 17:37:14 +08:00
|
|
|
}
|
|
|
|
|
|
2024-04-04 10:57:57 +08:00
|
|
|
def isCI = providers.environmentVariable('CI').present
|
|
|
|
|
|
|
|
|
|
develocity {
|
2022-08-10 17:37:14 +08:00
|
|
|
buildScan {
|
2024-04-04 10:57:57 +08:00
|
|
|
termsOfUseUrl = "https://gradle.com/terms-of-service"
|
|
|
|
|
termsOfUseAgree = "yes"
|
|
|
|
|
publishing {
|
|
|
|
|
onlyIf { isCI }
|
|
|
|
|
}
|
2022-08-10 17:37:14 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-05 09:23:10 +08:00
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
|
|
|
repositories {
|
2023-11-15 15:39:59 +08:00
|
|
|
google {
|
|
|
|
|
content {
|
2024-06-14 15:09:18 +08:00
|
|
|
includeGroupByRegex("com\\.android.*")
|
|
|
|
|
includeGroupByRegex("com\\.google.*")
|
|
|
|
|
includeGroupByRegex("androidx.*")
|
2023-11-15 15:39:59 +08:00
|
|
|
}
|
|
|
|
|
}
|
2022-09-05 09:23:10 +08:00
|
|
|
mavenCentral()
|
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-11-27 20:20:46 +08:00
|
|
|
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
|
2022-09-05 09:23:10 +08:00
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
|
|
2021-10-11 13:16:06 +07:00
|
|
|
include ':iconloaderlib'
|
|
|
|
|
project(':iconloaderlib').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/iconloaderlib')
|
|
|
|
|
|
|
|
|
|
include ':searchuilib'
|
|
|
|
|
project(':searchuilib').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/searchuilib')
|
2020-01-15 12:27:36 -08:00
|
|
|
|
2023-12-13 17:08:28 +08:00
|
|
|
include ':animationlib'
|
|
|
|
|
project(':animationlib').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/animationlib')
|
|
|
|
|
|
|
|
|
|
include ':hidden-api'
|
2024-12-04 08:03:15 +08:00
|
|
|
|
|
|
|
|
include ':shared'
|
|
|
|
|
project(':shared').projectDir = new File(rootDir, 'systemUI/shared')
|
|
|
|
|
|
|
|
|
|
include ':plugin'
|
|
|
|
|
project(':plugin').projectDir = new File(rootDir, 'systemUI/plugin')
|
|
|
|
|
|
|
|
|
|
include ':plugincore'
|
|
|
|
|
project(':plugincore').projectDir = new File(rootDir, 'systemUI/plugin_core')
|
|
|
|
|
|
|
|
|
|
include ':common'
|
|
|
|
|
project(':common').projectDir = new File(rootDir, 'systemUI/common')
|
|
|
|
|
|
|
|
|
|
include ':log'
|
|
|
|
|
project(':log').projectDir = new File(rootDir, 'systemUI/log')
|
|
|
|
|
|
|
|
|
|
include ':anim'
|
|
|
|
|
project(':anim').projectDir = new File(rootDir, 'systemUI/anim')
|
|
|
|
|
|
|
|
|
|
include ':unfold'
|
|
|
|
|
project(':unfold').projectDir = new File(rootDir, 'systemUI/unfold')
|
|
|
|
|
|
|
|
|
|
include ':viewcapture'
|
|
|
|
|
project(':viewcapture').projectDir = new File(rootDir, 'systemUI/viewcapture')
|
|
|
|
|
|
2024-01-26 05:59:47 +08:00
|
|
|
|
2023-01-16 10:24:03 +08:00
|
|
|
include ':compatLib'
|
2024-01-26 05:59:47 +08:00
|
|
|
include ':compatLib:compatLibVQ'
|
|
|
|
|
include ':compatLib:compatLibVR'
|
|
|
|
|
include ':compatLib:compatLibVS'
|
|
|
|
|
include ':compatLib:compatLibVT'
|
|
|
|
|
include ':compatLib:compatLibVU'
|
2024-10-06 17:33:30 +08:00
|
|
|
include ':compatLib:compatLibVV'
|
2024-01-26 05:59:47 +08:00
|
|
|
|
2023-12-06 10:45:39 +08:00
|
|
|
include ':baseline-profile'
|
2024-10-06 13:34:50 +08:00
|
|
|
|
|
|
|
|
include ':androidx-lib'
|
2024-10-06 17:33:30 +08:00
|
|
|
include ':flags'
|
2024-11-02 10:45:09 +08:00
|
|
|
include ':wmshell'
|