mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-11 06:44:00 +00:00
98 lines
2.6 KiB
Groovy
98 lines
2.6 KiB
Groovy
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
// https://docs.gradle.com/enterprise/gradle-plugin/
|
|
plugins {
|
|
id "com.gradle.develocity" version "4.3"
|
|
}
|
|
|
|
def isCI = providers.environmentVariable('CI').present
|
|
|
|
develocity {
|
|
buildScan {
|
|
termsOfUseUrl = "https://gradle.com/terms-of-service"
|
|
termsOfUseAgree = "yes"
|
|
publishing {
|
|
onlyIf { isCI }
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
enableFeaturePreview("STABLE_CONFIGURATION_CACHE")
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
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')
|
|
|
|
include ':animationlib'
|
|
project(':animationlib').projectDir = new File(rootDir, 'platform_frameworks_libs_systemui/animationlib')
|
|
|
|
include ':hidden-api'
|
|
|
|
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')
|
|
|
|
|
|
include ':compatLib'
|
|
include ':compatLib:compatLibVQ'
|
|
include ':compatLib:compatLibVR'
|
|
include ':compatLib:compatLibVS'
|
|
include ':compatLib:compatLibVT'
|
|
include ':compatLib:compatLibVU'
|
|
include ':compatLib:compatLibVV'
|
|
|
|
include ':baseline-profile'
|
|
|
|
include ':androidx-lib'
|
|
include ':flags'
|
|
include ':wmshell'
|