2022-09-05 09:23:10 +08:00
|
|
|
pluginManagement {
|
|
|
|
|
repositories {
|
|
|
|
|
google()
|
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 {
|
2023-11-14 10:39:46 +08:00
|
|
|
id "com.gradle.enterprise" version "3.15.1"
|
2022-08-10 17:37:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gradleEnterprise {
|
|
|
|
|
buildScan {
|
|
|
|
|
termsOfServiceUrl = "https://gradle.com/terms-of-service"
|
|
|
|
|
termsOfServiceAgree = "yes"
|
2022-09-06 08:41:46 +08:00
|
|
|
publishAlways()
|
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 {
|
|
|
|
|
google()
|
|
|
|
|
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-01-16 10:24:03 +08:00
|
|
|
include ':systemUIShared'
|
2023-09-21 21:54:56 +08:00
|
|
|
include ':systemUIAnim'
|
2023-11-02 08:08:42 +08:00
|
|
|
include ':systemUnFold'
|
2023-09-21 21:54:56 +08:00
|
|
|
include ':systemUIViewCapture'
|
2023-01-16 10:24:03 +08:00
|
|
|
include ':compatLib'
|
|
|
|
|
include ':compatLibVR'
|
|
|
|
|
include ':compatLibVS'
|
2022-06-22 17:49:14 +07:00
|
|
|
include ':hidden-api'
|